浏览代码

升级版本修复部分依赖漏洞

andy 1 年之前
父节点
当前提交
9b476160db
共有 2 个文件被更改,包括 8 次插入34 次删除
  1. 8 15
      pom.xml
  2. 0 19
      src/main/java/com/scbfkj/uni/system/SystemInit.java

+ 8 - 15
pom.xml

@@ -5,7 +5,7 @@
     <parent>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-parent</artifactId>
-        <version>3.1.5</version>
+        <version>3.2.1</version>
         <relativePath/> <!-- lookup parent from repository -->
     </parent>
     <groupId>com.scbfkj</groupId>
@@ -56,7 +56,7 @@
         <dependency>
             <groupId>com.ibm.mq</groupId>
             <artifactId>com.ibm.mq.allclient</artifactId>
-            <version>9.3.2.0</version>
+            <version>9.3.3.0</version>
         </dependency>
         <!--        <dependency>-->
         <!--            <groupId>co.elastic.clients</groupId>-->
@@ -70,6 +70,7 @@
         <dependency>
             <groupId>com.fasterxml.jackson.core</groupId>
             <artifactId>jackson-databind</artifactId>
+            <version>2.16.0</version>
         </dependency>
         <dependency>
             <groupId>commons-net</groupId>
@@ -113,6 +114,7 @@
         <dependency>
             <groupId>com.jayway.jsonpath</groupId>
             <artifactId>json-path</artifactId>
+            <version>2.9.0</version>
         </dependency>
 
         <dependency>
@@ -133,24 +135,15 @@
             <artifactId>activemq-client</artifactId>
             <version>5.18.3</version>
         </dependency>
-        <dependency>
-            <groupId>org.flywaydb</groupId>
-            <artifactId>flyway-core</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.flywaydb</groupId>
-            <artifactId>flyway-mysql</artifactId>
-        </dependency>
         <dependency>
             <groupId>org.elasticsearch.client</groupId>
             <artifactId>elasticsearch-rest-client</artifactId>
             <version>8.8.2</version>
         </dependency>
-        <!--        <dependency>-->
-        <!--            <groupId>org.elasticsearch.client</groupId>-->
-        <!--            <artifactId>elasticsearch-rest-high-level-client</artifactId>-->
-        <!--            <version>7.17.9</version>-->
-        <!--        </dependency>-->
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-lang3</artifactId>
+        </dependency>
 
     </dependencies>
 

+ 0 - 19
src/main/java/com/scbfkj/uni/system/SystemInit.java

@@ -37,8 +37,6 @@ public class SystemInit {
     @Value("${app.debug:false}")
     private boolean debug = true;
 
-    @Value("${app.enable-flyway:false}")
-    private boolean enableFlyway = false;
     @Value("${app.enable-reset-config:false}")
     private boolean enableResetConfig = false;
 
@@ -78,11 +76,6 @@ public class SystemInit {
         Config.setDebug(debug);
         Config.setCenterConnectionStr(DataEncryptionUtil.decryptRSAByPrivateKey(centerConfig));
         Config.setSecurityConnectionStr(DataEncryptionUtil.decryptRSAByPrivateKey(securityConfig));
-//        初始化数据结构
-        if (enableFlyway) {
-//            migrateDB();
-
-        }
         if (enableResetConfig) {
             cleanRemoteConfig(Config.getCenterConnectionStr(), "classpath:sql/systemset/*");
             cleanRemoteConfig(Config.getSecurityConnectionStr(), "classpath:sql/uniauth/*");
@@ -188,16 +181,4 @@ public class SystemInit {
         }
 
     }
-//
-//    /**
-//     * 迁移数据,数据库管理
-//     *
-//     * @throws Exception
-//     */
-//    private void migrateDB() throws Exception {
-//        Flyway systemSetFlyway = Flyway.configure().dataSource(DataBase.getDataSourcePool(Config.getCenterConnectionStr()).getUnwrappedDataSource()).locations("db/systemset").baselineOnMigrate(true).load();
-//        systemSetFlyway.migrate();
-//        Flyway uniAuthFlyway = Flyway.configure().dataSource(DataBase.getDataSourcePool(Config.getSecurityConnectionStr()).getUnwrappedDataSource()).locations("db/uniauth").baselineOnMigrate(true).load();
-//        uniAuthFlyway.migrate();
-//    }
 }