sbj пре 1 година
родитељ
комит
e4d105163b

+ 1 - 1
src/main/java/com/example/sqlrun/entity/TablespacePartitionRule.java

@@ -11,7 +11,7 @@ import lombok.Data;
  * 表空间以及表分区创建规则表
  * @TableName TABLESPACE_PATITION_RULE
  */
-@TableName(value ="GHJG_BASICS.TABLESPACE_PARTITION_RULE")
+@TableName(value ="NHDT.TABLESPACE_PARTITION_RULE")
 @Data
 public class TablespacePartitionRule implements Serializable {
     /**

+ 5 - 0
src/main/java/com/example/sqlrun/fixSql/MakeTableSpace.java

@@ -2,6 +2,7 @@ package com.example.sqlrun.fixSql;
 
 import com.example.sqlrun.myEnum.SpaceEnum;
 import com.shanghaigeography.Util.DateUtils;
+import java.io.File;
 import java.text.ParseException;
 import java.util.ArrayList;
 import java.util.Date;
@@ -34,6 +35,10 @@ public class MakeTableSpace {
     if (StringUtils.isEmpty(tableSpacePath) || !StringUtils.hasLength(tableSpacePath)) {
       tableSpacePath = "D:\\app\\Administrator\\dm\\TEST\\" + tableSpaceFileNamePrefix;
     }else {
+      File file = new File(tableSpacePath);
+      if (!file.exists()){
+          file.mkdirs();
+      }
       tableSpacePath =tableSpacePath +  "/" + tableSpaceFileNamePrefix;
     }
     //Date stDate = DateUtils.stringToDate(startDate, "yyyyMM");

+ 12 - 12
src/main/java/com/example/sqlrun/service/impl/SpaceAndPartitionServiceImpl.java

@@ -57,23 +57,23 @@ public class SpaceAndPartitionServiceImpl implements SpaceAndPartitionService {
                             date,
                             YearMonth.of(date.getYear() + 1900, date.getMonth() + 1).lengthOfMonth());
       System.out.println(tableSpace.get(SpaceEnum.TABLESPACE_SQL.getName()).toString());
-       //statement.execute(tableSpace.get(SpaceEnum.TABLESPACE_SQL.getName()).toString());
-//                  partitionSql.forEach(
-//                          i -> {
-//                              try {
-//                                  statement.addBatch(i);
-//                              } catch (SQLException throwables) {
-//                                  throwables.printStackTrace();
-//                              }
-//                          });
-//                  statement.executeBatch();
-//                  statement.clearBatch();
+       statement.execute(tableSpace.get(SpaceEnum.TABLESPACE_SQL.getName()).toString());
+                  partitionSql.forEach(
+                          i -> {
+                              try {
+                                  statement.addBatch(i);
+                              } catch (SQLException throwables) {
+                                  throwables.printStackTrace();
+                              }
+                          });
+                  statement.executeBatch();
+                  statement.clearBatch();
       partitionSql.forEach(System.out::println);
         }
         Date lastDate = (Date) tableSpaces.get(tableSpaces.size() - 1).get(SpaceEnum.DATE.getName());
         rule.setLastAddTablespaceTime(DateUtils.monthAddNum(lastDate, 1));
         rule.setLastAddPartitionTime(DateUtils.dayAddNum(DateUtils.monthAddNum(lastDate, 1), -1));
-        //ruleService.updateById(rule);
+        ruleService.updateById(rule);
     }
 
     @Autowired

+ 6 - 3
src/main/resources/application.yaml

@@ -6,9 +6,12 @@ spring:
     hikari:
       idle-timeout: 30000
       maximum-pool-size: 150
-    password: GHJG@123
-    username: ghjg_basics
-    url: jdbc:oracle:thin:@//10.114.4.56/shhwdb
+    password: SHHW1234
+    username: nhdt
+    url: jdbc:oracle:thin:@//10.135.10.193/orcl
+#    password: GHJG@123
+#    username: ghjg_basics
+#    url: jdbc:oracle:thin:@//10.114.4.56/shhwdb
 #    password: SHHW1234
 #    url: jdbc:oracle:thin:@//127.0.0.1:1521/orcl
 #    username: nhgis