소스 검색

修复分页导致表单无法全部部署的问题

zhouhao 8 년 전
부모
커밋
d2897e7918
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      hsweb-web-service-impl-common/src/main/java/org/hsweb/web/service/impl/FormDeployContextLoaderListener.java

+ 1 - 1
hsweb-web-service-impl-common/src/main/java/org/hsweb/web/service/impl/FormDeployContextLoaderListener.java

@@ -24,7 +24,7 @@ public class FormDeployContextLoaderListener implements ApplicationListener<Cont
     public void onApplicationEvent(ContextRefreshedEvent event) {
         if (event.getApplicationContext().getParent() != null) return;
         QueryParam param = new QueryParam();
-        param.where("using", 1);
+        param.where("using", 1).noPaging();
         try {
             formService.select(param).forEach(form -> {
                 try {