Explorar o código

更新服务器地址

15510527737 hai 4 meses
pai
achega
ee7bf7666c

+ 3 - 3
pom.xml

@@ -120,14 +120,14 @@
 
     <!-- SpringBoot专用的打包插件 -->
     <build>
-        <finalName>shipLockKingBase</finalName>
+        <finalName>WaterPassengerTransportKingBase</finalName>
         <plugins>
             <plugin>
                 <groupId>org.springframework.boot</groupId>
                 <artifactId>spring-boot-maven-plugin</artifactId>
                 <version>${springboot.version}</version>
                 <configuration>
-                    <mainClass>tech.powerjob.work.ShipLockApplication</mainClass>
+                    <mainClass>tech.powerjob.work.WaterPassengerTransportApplication</mainClass>
                 </configuration>
                 <executions>
                     <execution>
@@ -147,4 +147,4 @@
         </plugins>
     </build>
 
-</project>
+</project>

+ 5 - 0
src/main/java/tech/powerjob/work/config/SqlProcessorConfiguration.java

@@ -1,5 +1,6 @@
 package tech.powerjob.work.config;
 
+import lombok.extern.log4j.Log4j2;
 import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
 import tech.powerjob.common.utils.CommonUtils;
 import com.zaxxer.hikari.HikariConfig;
@@ -21,12 +22,14 @@ import javax.sql.DataSource;
  */
 @Configuration
 @ConditionalOnBean(PowerJobWorker.class)
+@Log4j2
 public class SqlProcessorConfiguration {
 
 
     @Bean
     @DependsOn({"initPowerJob"})
     public DataSource sqlProcessorDataSource() {
+        log.info("开始初始化powerJob了");
         String path = System.getProperty("user.home") + "/test/h2/" + CommonUtils.genUUID() + "/";
         String jdbcUrl = String.format("jdbc:h2:file:%spowerjob_sql_processor_db;DB_CLOSE_DELAY=-1;DATABASE_TO_UPPER=false", path);
         HikariConfig config = new HikariConfig();
@@ -37,6 +40,8 @@ public class SqlProcessorConfiguration {
         config.setMinimumIdle(1);
         // 池中最大连接数量
         config.setMaximumPoolSize(10);
+        log.info("初始化powerJob完毕");
+        log.info("config:{}"+config);
         return new HikariDataSource(config);
     }
 

+ 1 - 0
src/main/java/tech/powerjob/work/service/impl/waterPassengerTransport/HMDataServiceImpl.java

@@ -44,6 +44,7 @@ public class HMDataServiceImpl implements HMDataShareService {
             e.printStackTrace();
             log.info(e.getMessage());
         }
+        log.info("执行完毕");
         System.out.println("执行完毕");
         return new ProcessResult(true);
     }

+ 3 - 3
src/main/resources/application.yml

@@ -1,5 +1,5 @@
 server:
-  port: 7803
+  port: 7805
 
   # Spring JPA settings (commented out)
   #spring:
@@ -10,7 +10,7 @@ powerjob:
   worker:
     enabled: true
     allow-lazy-connect-server: false
-    port: 28000
+    port: 27782
     app-name: WaterPassengerTransport
     server-address: 127.0.0.1:7700
     protocol: http
@@ -41,7 +41,7 @@ gettoken: http://10.87.150.62:9090/oauth/token
 client_secret: 8c7353785ad2403da28e1e938ad3ba5a
 client_id: 6580df4629bc466395ba0eed8444311b
 
-preGhjgWebService: http://10.83.240.214:8090/HmService/
+preGhjgWebService: http://174.0.34.13:8090/HmService/
 #preGhjgWebService: http://183.194.248.155:8090/ghjgWebService/ (commented out)
 
 

+ 1 - 1
src/main/resources/logback.xml

@@ -3,7 +3,7 @@
     <contextName>logback</contextName>
 
     <!-- name的值是变量的名称,value的值时变量定义的值。通过定义的值会被插入到logger上下文中。定义后,可以使“${}”来使用变量。 -->
-    <property name="log.path" value="./shipLockLogFiles" />
+    <property name="log.path" value="./WaterPassengerTransportLogFiles" />
 
     <!--0. 日志格式和颜色渲染 -->
     <!-- 彩色日志依赖的渲染类 -->