Commit 15a4ed15 authored by AllenChen's avatar AllenChen

commit

parent 7727f186
...@@ -24,7 +24,7 @@ public class RepeatedlyReadFilter implements Filter { ...@@ -24,7 +24,7 @@ public class RepeatedlyReadFilter implements Filter {
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
} }
log.info("RepeatedlyReadFilter doFilter ok"); // log.info("RepeatedlyReadFilter doFilter ok");
} }
} }
...@@ -179,7 +179,7 @@ public class PddOpenController { ...@@ -179,7 +179,7 @@ public class PddOpenController {
1, 1,
"SENDTORECEVER".equals(queryRequest.getSegmentCode()) "SENDTORECEVER".equals(queryRequest.getSegmentCode())
); );
log.info("mailNo:{} weight:{}, fee:{}", packageDetailEntity.getMailNo(), currWeight, currFee); // log.info("mailNo:{} weight:{}, fee:{}", packageDetailEntity.getMailNo(), currWeight, currFee);
weight += currWeight; weight += currWeight;
freightFee += currFee; freightFee += currFee;
...@@ -200,7 +200,7 @@ public class PddOpenController { ...@@ -200,7 +200,7 @@ public class PddOpenController {
mailDetailEntity.getHeight(), mailDetailEntity.getHeight(),
mailDetailEntity.getWeight(), mailDetailEntity.getWeight(),
"SENDTORECEVER".equals(queryRequest.getSegmentCode())); "SENDTORECEVER".equals(queryRequest.getSegmentCode()));
log.info("mailNo:{} weight:{}, fee:{}", mailDetailEntity.getMailNo(), currWeight); // log.info("mailNo:{} weight:{}, fee:{}", mailDetailEntity.getMailNo(), currWeight);
weight += currWeight; weight += currWeight;
} }
} }
...@@ -210,9 +210,7 @@ public class PddOpenController { ...@@ -210,9 +210,7 @@ public class PddOpenController {
1, 1,
"SENDTORECEVER".equals(queryRequest.getSegmentCode()) "SENDTORECEVER".equals(queryRequest.getSegmentCode())
); );
log.info("weight:{}, fee:{}", weight, freightFee); // log.info("weight:{}, fee:{}", weight, freightFee);
} }
} }
......
...@@ -74,13 +74,13 @@ public class PddOverseaPriceTool { ...@@ -74,13 +74,13 @@ public class PddOverseaPriceTool {
// 判断重量是否超重 // 判断重量是否超重
//分析重量 //分析重量
log.info("weight = {}, initialWeight = {}, ", weight, initialWeight); // log.info("weight = {}, initialWeight = {}, ", weight, initialWeight);
if (weight > initialWeight) { if (weight > initialWeight) {
//计算超出重量 //计算超出重量
weight = weight - initialWeight; weight = weight - initialWeight;
excess = excessPrice * ((int) Math.ceil(1.0 * weight / excessWeight)); excess = excessPrice * ((int) Math.ceil(1.0 * weight / excessWeight));
} }
log.info("excess = {}", excess); // log.info("excess = {}", excess);
//计算价格 //计算价格
if (type.equals("NORMAL")) { if (type.equals("NORMAL")) {
...@@ -90,7 +90,7 @@ public class PddOverseaPriceTool { ...@@ -90,7 +90,7 @@ public class PddOverseaPriceTool {
} else { } else {
price = price + sInitalPrice + excess; price = price + sInitalPrice + excess;
} }
log.info("price = {}", price); // log.info("price = {}", price);
return price; return price;
} }
......
...@@ -86,14 +86,21 @@ public class UniPassUtil { ...@@ -86,14 +86,21 @@ public class UniPassUtil {
// UniPassPersonalClearanceCheckResult result = new UniPassPersonalClearanceCheckResult(); // UniPassPersonalClearanceCheckResult result = new UniPassPersonalClearanceCheckResult();
// result.setSuccess(false); // result.setSuccess(false);
try { try {
ResponseEntity<String> resp = restTemplate.getForEntity(url, String.class); ResponseEntity<String> resp = null;
int retry = 0; int retry = 0;
// while (!resp.getStatusCode().is2xxSuccessful() & retry < 5) { while (resp == null || ((!resp.getStatusCode().is2xxSuccessful()) && retry < 5)){
// retry++; retry++;
// resp = new RestTemplate().getForEntity(url, String.class); try {
// } resp = restTemplate.getForEntity(url, String.class);
} catch (Exception e) {
log.error("获取unipass通关符号验证信息失败");
}
log.info("获取个人通关信息结果失败,重新获取");
}
// result.setMsg("查询验证失败!"); // result.setMsg("查询验证失败!");
if (resp.getStatusCode().is2xxSuccessful()) { if (resp.getStatusCode().is2xxSuccessful()) {
log.info("查询成功");
XmlMapper xmlMapper = new XmlMapper(); XmlMapper xmlMapper = new XmlMapper();
String body = resp.getBody(); String body = resp.getBody();
......
...@@ -655,8 +655,8 @@ public class CommonTest { ...@@ -655,8 +655,8 @@ public class CommonTest {
*/ */
@Test @Test
public void destroy() { public void destroy() {
String mailNo = "SF3298513357701"; String mailNo = "46100002122388";
String expressCode = "SF"; String expressCode = "JGWL";
String action = "destroy"; String action = "destroy";
PddServiceConsoFirstBizActionNotifyRequest notifyRequest = new PddServiceConsoFirstBizActionNotifyRequest(); PddServiceConsoFirstBizActionNotifyRequest notifyRequest = new PddServiceConsoFirstBizActionNotifyRequest();
notifyRequest.setProviderCode(PddAPIConfig.PROVIDER_CODE); notifyRequest.setProviderCode(PddAPIConfig.PROVIDER_CODE);
......
2026-03-29 21:15:01 [main] INFO o.ta.pddserver.PddServerApplication - Starting PddServerApplication using Java 25.0.2 with PID 3363 (/Users/allen/Documents/HJCloudProjects/multiplesourcesecurity/PddServer/target/classes started by allen in /Users/allen/Documents/HJCloudProjects/multiplesourcesecurity) 2026-04-02 22:56:19 [main] INFO o.ta.pddserver.PddServerApplication - Starting PddServerApplication using Java 25.0.2 with PID 36252 (/Users/allen/Documents/HJCloudProjects/multiplesourcesecurity/PddServer/target/classes started by allen in /Users/allen/Documents/HJCloudProjects/multiplesourcesecurity)
2026-03-29 21:15:01 [main] DEBUG o.ta.pddserver.PddServerApplication - Running with Spring Boot v3.5.6, Spring v6.2.11 2026-04-02 22:56:19 [main] INFO o.ta.pddserver.PddServerApplication - No active profile set, falling back to 1 default profile: "default"
2026-03-29 21:15:01 [main] INFO o.ta.pddserver.PddServerApplication - No active profile set, falling back to 1 default profile: "default" 2026-04-02 22:56:20 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 9000 (http)
2026-03-29 21:15:01 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 9000 (http) 2026-04-02 22:56:20 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
2026-03-29 21:15:01 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] 2026-04-02 22:56:20 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.46]
2026-03-29 21:15:01 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.46] 2026-04-02 22:56:20 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext
2026-03-29 21:15:01 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext 2026-04-02 22:56:20 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 459 ms
2026-03-29 21:15:01 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 483 ms 2026-04-02 22:56:20 [main] INFO org.ta.pddserver.config.OpenFilter - OPEN 过滤器初始化
2026-03-29 21:15:01 [main] INFO org.ta.pddserver.config.OpenFilter - OPEN 过滤器初始化 2026-04-02 22:56:20 [main] INFO org.ta.pddserver.config.APIFilter - API 过滤器初始化
2026-03-29 21:15:01 [main] INFO org.ta.pddserver.config.APIFilter - API 过滤器初始化 2026-04-02 22:56:20 [main] INFO o.t.p.serviceutil.WaybillOperator - 初始化 WaybillOperator,获取当前面单池状态
2026-03-29 21:15:02 [main] INFO o.t.p.serviceutil.WaybillOperator - 初始化 WaybillOperator,获取当前面单池状态 2026-04-02 22:56:20 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Starting...
2026-03-29 21:15:02 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Starting... 2026-04-02 22:56:22 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariCP - Added connection com.mysql.cj.jdbc.ConnectionImpl@605c7a9e
2026-03-29 21:15:03 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariCP - Added connection com.mysql.cj.jdbc.ConnectionImpl@44d43cc9 2026-04-02 22:56:22 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Start completed.
2026-03-29 21:15:03 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Start completed. 2026-04-02 22:56:22 [main] INFO o.t.p.serviceutil.WaybillOperator - 面单池更新完成,快递公司编码LOTTO,当前单号31775900987,剩余单号数量29493
2026-03-29 21:15:03 [main] DEBUG o.t.p.m.WaybillSeaMapper.selectFirst - ==> Preparing: SELECT * FROM `waybill_sea` ORDER BY `uid` ASC LIMIT 1; 2026-04-02 22:56:22 [main] INFO o.s.v.b.OptionalValidatorFactoryBean - Failed to set up a Bean Validation provider: jakarta.validation.NoProviderFoundException: Unable to create a Configuration, because no Jakarta Bean Validation provider could be found. Add a provider like Hibernate Validator (RI) to your classpath.
2026-03-29 21:15:03 [main] DEBUG o.t.p.m.WaybillSeaMapper.selectFirst - ==> Parameters: 2026-04-02 22:56:22 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false)
2026-03-29 21:15:03 [main] DEBUG o.t.p.m.WaybillSeaMapper.selectFirst - <== Total: 1 2026-04-02 22:56:22 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 9000 (http) with context path '/'
2026-03-29 21:15:03 [main] INFO o.t.p.serviceutil.WaybillOperator - 面单池更新完成,快递公司编码LOTTO,当前单号31775900987,剩余单号数量29493 2026-04-02 22:56:22 [main] INFO o.ta.pddserver.PddServerApplication - Started PddServerApplication in 3.016 seconds (process running for 3.225)
2026-03-29 21:15:03 [main] INFO o.s.v.b.OptionalValidatorFactoryBean - Failed to set up a Bean Validation provider: jakarta.validation.NoProviderFoundException: Unable to create a Configuration, because no Jakarta Bean Validation provider could be found. Add a provider like Hibernate Validator (RI) to your classpath. 2026-04-02 22:56:22 [main] INFO o.t.p.config.PddApplicationRunner - 注入注册PDD-HTTP 日志保存工具
2026-03-29 21:15:03 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) 2026-04-02 22:56:24 [scheduling-1] INFO o.t.pddserver.serviceutil.GDOperator - 2026年4月2日 22:56:24 工单数量:1
2026-03-29 21:15:03 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - 2026-04-02 22:58:05 [HikariCP:housekeeper] WARN com.zaxxer.hikari.pool.PoolBase - HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@605c7a9e (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2026-04-02 22:58:10 [HikariCP:housekeeper] WARN com.zaxxer.hikari.pool.PoolBase - HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@1115a25e (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
Using generated security password: b9552d98-e19b-4d20-978e-51adeb49a205 2026-04-02 22:58:19 [HikariCP:housekeeper] WARN com.zaxxer.hikari.pool.PoolBase - HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@592b8ceb (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2026-04-02 22:58:24 [HikariCP:housekeeper] WARN com.zaxxer.hikari.pool.PoolBase - HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@202871d0 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
This generated password is for development use only. Your security configuration must be updated before running your application in production. 2026-04-02 22:58:31 [HikariCP:housekeeper] WARN com.zaxxer.hikari.pool.PoolBase - HikariCP - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@19daab74 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2026-04-02 22:59:01 [http-nio-9000-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet'
2026-03-29 21:15:03 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager 2026-04-02 22:59:01 [http-nio-9000-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
2026-03-29 21:15:03 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 9000 (http) with context path '/' 2026-04-02 22:59:01 [http-nio-9000-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms
2026-03-29 21:15:03 [main] INFO o.ta.pddserver.PddServerApplication - Started PddServerApplication in 2.773 seconds (process running for 2.897) 2026-04-02 22:59:01 [http-nio-9000-exec-1] ERROR o.t.p.controller.PddOpenController - pdd_sign is empty
2026-03-29 21:15:03 [main] INFO o.t.p.config.PddApplicationRunner - 注入注册PDD-HTTP 日志保存工具 2026-04-02 22:59:01 [http-nio-9000-exec-1] INFO o.t.p.controller.PddOpenController - Request:
2026-03-29 21:15:05 [scheduling-1] INFO o.t.pddserver.serviceutil.GDOperator - 2026年3月29日 21:15:05 工单数量:0 {"idType":"韩国个人通关号","name":"JIN YINGSHUN","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01055134389","type":"pdd.service.conso.user.identify","idNumber":"P230020638942","request_id":"2019451645","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1775119622"}
2026-03-29 21:15:06 [SpringApplicationShutdownHook] INFO o.s.b.w.e.tomcat.GracefulShutdown - Commencing graceful shutdown. Waiting for active requests to complete 2026-04-02 22:59:06 [HikariCP:connection-adder] WARN com.zaxxer.hikari.pool.PoolBase - HikariCP - Pool is empty, failed to create/setup connection (046892e7-0d51-4096-b8ea-02c802ee2469)
2026-03-29 21:15:06 [tomcat-shutdown] INFO o.s.b.w.e.tomcat.GracefulShutdown - Graceful shutdown complete com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
2026-03-29 21:15:06 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Shutdown initiated...
2026-03-29 21:15:08 [main] INFO o.ta.pddserver.PddServerApplication - Starting PddServerApplication using Java 25.0.2 with PID 3381 (/Users/allen/Documents/HJCloudProjects/multiplesourcesecurity/PddServer/target/classes started by allen in /Users/allen/Documents/HJCloudProjects/multiplesourcesecurity)
2026-03-29 21:15:08 [main] DEBUG o.ta.pddserver.PddServerApplication - Running with Spring Boot v3.5.6, Spring v6.2.11
2026-03-29 21:15:08 [main] INFO o.ta.pddserver.PddServerApplication - No active profile set, falling back to 1 default profile: "default"
2026-03-29 21:15:08 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 9000 (http)
2026-03-29 21:15:08 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
2026-03-29 21:15:08 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.46]
2026-03-29 21:15:08 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext
2026-03-29 21:15:08 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 388 ms
2026-03-29 21:15:08 [main] INFO org.ta.pddserver.config.OpenFilter - OPEN 过滤器初始化
2026-03-29 21:15:08 [main] INFO org.ta.pddserver.config.APIFilter - API 过滤器初始化
2026-03-29 21:15:09 [main] INFO o.t.p.serviceutil.WaybillOperator - 初始化 WaybillOperator,获取当前面单池状态
2026-03-29 21:15:09 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Starting...
2026-03-29 21:15:09 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariCP - Added connection com.mysql.cj.jdbc.ConnectionImpl@a3b858f
2026-03-29 21:15:09 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Start completed.
2026-03-29 21:15:09 [main] DEBUG o.t.p.m.WaybillSeaMapper.selectFirst - ==> Preparing: SELECT * FROM `waybill_sea` ORDER BY `uid` ASC LIMIT 1;
2026-03-29 21:15:09 [main] DEBUG o.t.p.m.WaybillSeaMapper.selectFirst - ==> Parameters:
2026-03-29 21:15:10 [main] DEBUG o.t.p.m.WaybillSeaMapper.selectFirst - <== Total: 1
2026-03-29 21:15:10 [main] INFO o.t.p.serviceutil.WaybillOperator - 面单池更新完成,快递公司编码LOTTO,当前单号31775900987,剩余单号数量29493
2026-03-29 21:15:10 [main] INFO o.s.v.b.OptionalValidatorFactoryBean - Failed to set up a Bean Validation provider: jakarta.validation.NoProviderFoundException: Unable to create a Configuration, because no Jakarta Bean Validation provider could be found. Add a provider like Hibernate Validator (RI) to your classpath.
2026-03-29 21:15:10 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false)
2026-03-29 21:15:10 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
Using generated security password: 4a837606-a6a2-41e2-9ac5-b7cde1d93a44
This generated password is for development use only. Your security configuration must be updated before running your application in production.
2026-03-29 21:15:10 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager
2026-03-29 21:15:10 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 9000 (http) with context path '/'
2026-03-29 21:15:10 [main] INFO o.ta.pddserver.PddServerApplication - Started PddServerApplication in 2.492 seconds (process running for 2.589)
2026-03-29 21:15:10 [main] INFO o.t.p.config.PddApplicationRunner - 注入注册PDD-HTTP 日志保存工具
2026-03-29 21:15:25 [SpringApplicationShutdownHook] INFO o.s.b.w.e.tomcat.GracefulShutdown - Commencing graceful shutdown. Waiting for active requests to complete
2026-03-29 21:15:25 [tomcat-shutdown] INFO o.s.b.w.e.tomcat.GracefulShutdown - Graceful shutdown complete
2026-03-29 21:15:25 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Shutdown initiated...
2026-03-29 21:15:25 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Shutdown completed.
2026-03-29 21:19:28 [main] INFO o.ta.pddserver.PddServerApplication - Starting PddServerApplication using Java 25 with PID 10436 (E:\HJ\multiplesourcesecurity\PddServer\target\classes started by ChenH in E:\HJ\multiplesourcesecurity)
2026-03-29 21:19:28 [main] DEBUG o.ta.pddserver.PddServerApplication - Running with Spring Boot v3.5.6, Spring v6.2.11
2026-03-29 21:19:28 [main] INFO o.ta.pddserver.PddServerApplication - No active profile set, falling back to 1 default profile: "default"
2026-03-29 21:19:30 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 9000 (http)
2026-03-29 21:19:30 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
2026-03-29 21:19:30 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.46]
2026-03-29 21:19:30 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext
2026-03-29 21:19:30 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1370 ms
2026-03-29 21:19:30 [main] INFO org.ta.pddserver.config.OpenFilter - OPEN 过滤器初始化
2026-03-29 21:19:30 [main] INFO org.ta.pddserver.config.APIFilter - API 过滤器初始化
2026-03-29 21:19:31 [main] INFO o.t.p.serviceutil.WaybillOperator - 初始化 WaybillOperator,获取当前面单池状态
2026-03-29 21:19:31 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Starting...
2026-03-29 21:19:32 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariCP - Added connection com.mysql.cj.jdbc.ConnectionImpl@32e697ac
2026-03-29 21:19:32 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Start completed.
2026-03-29 21:19:32 [main] DEBUG o.t.p.m.WaybillSeaMapper.selectFirst - ==> Preparing: SELECT * FROM `waybill_sea` ORDER BY `uid` ASC LIMIT 1;
2026-03-29 21:19:32 [main] DEBUG o.t.p.m.WaybillSeaMapper.selectFirst - ==> Parameters:
2026-03-29 21:19:32 [main] DEBUG o.t.p.m.WaybillSeaMapper.selectFirst - <== Total: 1
2026-03-29 21:19:32 [main] INFO o.t.p.serviceutil.WaybillOperator - 面单池更新完成,快递公司编码LOTTO,当前单号31775900987,剩余单号数量29493
2026-03-29 21:19:33 [main] INFO o.s.v.b.OptionalValidatorFactoryBean - Failed to set up a Bean Validation provider: jakarta.validation.NoProviderFoundException: Unable to create a Configuration, because no Jakarta Bean Validation provider could be found. Add a provider like Hibernate Validator (RI) to your classpath.
2026-03-29 21:19:34 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false)
2026-03-29 21:19:34 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
Using generated security password: 56c63b81-933f-4355-805e-1ca8e5762eac
This generated password is for development use only. Your security configuration must be updated before running your application in production.
2026-03-29 21:19:34 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager
2026-03-29 21:19:34 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 9000 (http) with context path '/'
2026-03-29 21:19:34 [main] INFO o.ta.pddserver.PddServerApplication - Started PddServerApplication in 6.877 seconds (process running for 7.925)
2026-03-29 21:19:34 [main] INFO o.t.p.config.PddApplicationRunner - 注入注册PDD-HTTP 日志保存工具
2026-03-29 21:20:18 [http-nio-9000-exec-2] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet'
2026-03-29 21:20:18 [http-nio-9000-exec-2] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
2026-03-29 21:20:18 [http-nio-9000-exec-2] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 0 ms
2026-03-29 21:23:37 [SpringApplicationShutdownHook] INFO o.s.b.w.e.tomcat.GracefulShutdown - Commencing graceful shutdown. Waiting for active requests to complete
2026-03-29 21:23:37 [tomcat-shutdown] INFO o.s.b.w.e.tomcat.GracefulShutdown - Graceful shutdown complete
2026-03-29 21:23:37 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Shutdown initiated...
2026-03-29 21:23:37 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Shutdown completed.
2026-03-29 21:23:51 [main] INFO o.ta.pddserver.PddServerApplication - Starting PddServerApplication using Java 25 with PID 7912 (E:\HJ\multiplesourcesecurity\PddServer\target\classes started by ChenH in E:\HJ\multiplesourcesecurity)
2026-03-29 21:23:51 [main] DEBUG o.ta.pddserver.PddServerApplication - Running with Spring Boot v3.5.6, Spring v6.2.11
2026-03-29 21:23:51 [main] INFO o.ta.pddserver.PddServerApplication - No active profile set, falling back to 1 default profile: "default"
2026-03-29 21:23:52 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 9000 (http)
2026-03-29 21:23:52 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
2026-03-29 21:23:52 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.46]
2026-03-29 21:23:52 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext
2026-03-29 21:23:52 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1199 ms
2026-03-29 21:23:52 [main] INFO org.ta.pddserver.config.OpenFilter - OPEN 过滤器初始化
2026-03-29 21:23:52 [main] INFO org.ta.pddserver.config.APIFilter - API 过滤器初始化
2026-03-29 21:23:53 [main] INFO o.t.p.serviceutil.WaybillOperator - 初始化 WaybillOperator,获取当前面单池状态
2026-03-29 21:23:53 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Starting...
2026-03-29 21:24:00 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariCP - Added connection com.mysql.cj.jdbc.ConnectionImpl@21c75084
2026-03-29 21:24:00 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Start completed.
2026-03-29 21:24:00 [main] DEBUG o.t.p.m.WaybillSeaMapper.selectFirst - ==> Preparing: SELECT * FROM `waybill_sea` ORDER BY `uid` ASC LIMIT 1;
2026-03-29 21:24:00 [main] DEBUG o.t.p.m.WaybillSeaMapper.selectFirst - ==> Parameters:
2026-03-29 21:24:01 [main] DEBUG o.t.p.m.WaybillSeaMapper.selectFirst - <== Total: 1
2026-03-29 21:24:01 [main] INFO o.t.p.serviceutil.WaybillOperator - 面单池更新完成,快递公司编码LOTTO,当前单号31775900987,剩余单号数量29493
2026-03-29 21:24:01 [main] INFO o.s.v.b.OptionalValidatorFactoryBean - Failed to set up a Bean Validation provider: jakarta.validation.NoProviderFoundException: Unable to create a Configuration, because no Jakarta Bean Validation provider could be found. Add a provider like Hibernate Validator (RI) to your classpath.
2026-03-29 21:24:02 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false)
2026-03-29 21:24:02 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 9000 (http) with context path '/'
2026-03-29 21:24:02 [main] INFO o.ta.pddserver.PddServerApplication - Started PddServerApplication in 11.702 seconds (process running for 12.621)
2026-03-29 21:24:02 [main] INFO o.t.p.config.PddApplicationRunner - 注入注册PDD-HTTP 日志保存工具
2026-03-29 21:24:15 [http-nio-9000-exec-2] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet'
2026-03-29 21:24:15 [http-nio-9000-exec-2] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
2026-03-29 21:24:15 [http-nio-9000-exec-2] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 0 ms
2026-03-29 21:24:15 [http-nio-9000-exec-2] ERROR o.t.p.controller.PddOpenController - pdd_sign is empty
2026-03-29 21:24:15 [http-nio-9000-exec-2] INFO o.t.p.controller.PddOpenController - Request:
{"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834669","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"}
2026-03-29 21:24:15 [http-nio-9000-exec-2] DEBUG o.t.p.m.LogsPddDownMapper.insert - ==> Preparing: INSERT INTO logs_pdd_down ( uid, created, req ) VALUES ( ?, ?, ? )
2026-03-29 21:24:15 [http-nio-9000-exec-2] DEBUG o.t.p.m.LogsPddDownMapper.insert - ==> Parameters: 2038245855449219073(String), 2026-03-29 21:24:15.274(Timestamp), {"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834669","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"}(String)
2026-03-29 21:24:15 [http-nio-9000-exec-2] DEBUG o.t.p.m.LogsPddDownMapper.insert - <== Updates: 1
2026-03-29 21:24:15 [http-nio-9000-exec-2] ERROR o.t.p.controller.PddOpenController - 验签失败
2026-03-29 21:24:15 [http-nio-9000-exec-2] DEBUG o.t.p.m.UserIdentifyMapper.insert - ==> Preparing: INSERT INTO user_identify ( uid, mobileNo, idType, idNumber, name ) VALUES ( ?, ?, ?, ?, ? )
2026-03-29 21:24:15 [http-nio-9000-exec-2] DEBUG o.t.p.m.UserIdentifyMapper.insert - ==> Parameters: 2038245856845922305(String), 01062420353(String), 韩国个人通关号(String), P160023834669(String), 김해곤(String)
2026-03-29 21:24:15 [http-nio-9000-exec-2] DEBUG o.t.p.m.UserIdentifyMapper.insert - <== Updates: 1
2026-03-29 21:24:15 [http-nio-9000-exec-2] INFO o.t.p.controller.PddOpenController - pdd.service.conso.user.identify
2026-03-29 21:24:15 [http-nio-9000-exec-2] INFO org.ta.pddserver.utils.UniPassUtil - url:https://unipass.customs.go.kr:38010/ext/rest/persEcmQry/retrievePersEcm?crkyCn=g240g274x016o063l080g030v2&persEcm=P160023834669&pltxNm=김해곤&cralTelno=01062420353
2026-03-29 21:24:44 [http-nio-9000-exec-2] INFO o.t.p.controller.PddOpenController - RESP:
{"code":306,"success":false,"message":"其它网络类可以重试的未知错误(如依赖下游不可用或超时)"}
2026-03-29 21:24:44 [http-nio-9000-exec-2] INFO o.t.p.config.RepeatedlyReadFilter - RepeatedlyReadFilter doFilter ok
2026-03-29 21:24:52 [http-nio-9000-exec-3] ERROR o.t.p.controller.PddOpenController - pdd_sign is empty
2026-03-29 21:24:52 [http-nio-9000-exec-3] INFO o.t.p.controller.PddOpenController - Request:
{"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834669","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"}
2026-03-29 21:24:53 [http-nio-9000-exec-3] DEBUG o.t.p.m.LogsPddDownMapper.insert - ==> Preparing: INSERT INTO logs_pdd_down ( uid, created, req ) VALUES ( ?, ?, ? )
2026-03-29 21:24:53 [http-nio-9000-exec-3] DEBUG o.t.p.m.LogsPddDownMapper.insert - ==> Parameters: 2038246011921924098(String), 2026-03-29 21:24:52.68(Timestamp), {"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834669","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"}(String)
2026-03-29 21:24:53 [http-nio-9000-exec-3] DEBUG o.t.p.m.LogsPddDownMapper.insert - <== Updates: 1
2026-03-29 21:24:53 [http-nio-9000-exec-3] ERROR o.t.p.controller.PddOpenController - 验签失败
2026-03-29 21:24:53 [http-nio-9000-exec-3] DEBUG o.t.p.m.UserIdentifyMapper.insert - ==> Preparing: INSERT INTO user_identify ( uid, mobileNo, idType, idNumber, name ) VALUES ( ?, ?, ?, ?, ? )
2026-03-29 21:24:53 [http-nio-9000-exec-3] DEBUG o.t.p.m.UserIdentifyMapper.insert - ==> Parameters: 2038246013796777986(String), 01062420353(String), 韩国个人通关号(String), P160023834669(String), 김해곤(String)
2026-03-29 21:24:53 [http-nio-9000-exec-3] DEBUG o.t.p.m.UserIdentifyMapper.insert - <== Updates: 1
2026-03-29 21:24:53 [http-nio-9000-exec-3] INFO o.t.p.controller.PddOpenController - pdd.service.conso.user.identify
2026-03-29 21:24:53 [http-nio-9000-exec-3] INFO org.ta.pddserver.utils.UniPassUtil - url:https://unipass.customs.go.kr:38010/ext/rest/persEcmQry/retrievePersEcm?crkyCn=g240g274x016o063l080g030v2&persEcm=P160023834669&pltxNm=김해곤&cralTelno=01062420353
2026-03-29 21:24:53 [http-nio-9000-exec-3] INFO o.t.p.controller.PddOpenController - RESP:
{"code":306,"success":false,"message":"其它网络类可以重试的未知错误(如依赖下游不可用或超时)"}
2026-03-29 21:24:53 [http-nio-9000-exec-3] INFO o.t.p.config.RepeatedlyReadFilter - RepeatedlyReadFilter doFilter ok
2026-03-29 21:25:41 [http-nio-9000-exec-5] ERROR o.t.p.controller.PddOpenController - pdd_sign is empty
2026-03-29 21:25:41 [http-nio-9000-exec-5] INFO o.t.p.controller.PddOpenController - Request:
{"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834669","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"}
2026-03-29 21:25:41 [http-nio-9000-exec-5] DEBUG o.t.p.m.LogsPddDownMapper.insert - ==> Preparing: INSERT INTO logs_pdd_down ( uid, created, req ) VALUES ( ?, ?, ? )
2026-03-29 21:25:41 [http-nio-9000-exec-5] DEBUG o.t.p.m.LogsPddDownMapper.insert - ==> Parameters: 2038246215135952897(String), 2026-03-29 21:25:41.13(Timestamp), {"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834669","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"}(String)
2026-03-29 21:25:41 [http-nio-9000-exec-5] DEBUG o.t.p.m.LogsPddDownMapper.insert - <== Updates: 1
2026-03-29 21:25:41 [http-nio-9000-exec-5] ERROR o.t.p.controller.PddOpenController - 验签失败
2026-03-29 21:25:41 [http-nio-9000-exec-5] DEBUG o.t.p.m.UserIdentifyMapper.insert - ==> Preparing: INSERT INTO user_identify ( uid, mobileNo, idType, idNumber, name ) VALUES ( ?, ?, ?, ?, ? )
2026-03-29 21:25:41 [http-nio-9000-exec-5] DEBUG o.t.p.m.UserIdentifyMapper.insert - ==> Parameters: 2038246215790264321(String), 01062420353(String), 韩国个人通关号(String), P160023834669(String), 김해곤(String)
2026-03-29 21:25:41 [http-nio-9000-exec-5] DEBUG o.t.p.m.UserIdentifyMapper.insert - <== Updates: 1
2026-03-29 21:25:41 [http-nio-9000-exec-5] INFO o.t.p.controller.PddOpenController - pdd.service.conso.user.identify
2026-03-29 21:25:41 [http-nio-9000-exec-5] INFO org.ta.pddserver.utils.UniPassUtil - url:https://unipass.customs.go.kr:38010/ext/rest/persEcmQry/retrievePersEcm?crkyCn=g240g274x016o063l080g030v2&persEcm=P160023834669&pltxNm=김해곤&cralTelno=01062420353
2026-03-29 21:25:41 [http-nio-9000-exec-5] INFO o.t.p.controller.PddOpenController - RESP:
{"code":306,"success":false,"message":"其它网络类可以重试的未知错误(如依赖下游不可用或超时)"}
2026-03-29 21:25:41 [http-nio-9000-exec-5] INFO o.t.p.config.RepeatedlyReadFilter - RepeatedlyReadFilter doFilter ok
2026-03-29 21:25:44 [http-nio-9000-exec-6] ERROR o.t.p.controller.PddOpenController - pdd_sign is empty
2026-03-29 21:25:44 [http-nio-9000-exec-6] INFO o.t.p.controller.PddOpenController - Request:
{"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834669","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"}
2026-03-29 21:25:44 [http-nio-9000-exec-6] DEBUG o.t.p.m.LogsPddDownMapper.insert - ==> Preparing: INSERT INTO logs_pdd_down ( uid, created, req ) VALUES ( ?, ?, ? )
2026-03-29 21:25:44 [http-nio-9000-exec-6] DEBUG o.t.p.m.LogsPddDownMapper.insert - ==> Parameters: 2038246228222181377(String), 2026-03-29 21:25:44.255(Timestamp), {"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834669","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"}(String)
2026-03-29 21:25:44 [http-nio-9000-exec-6] DEBUG o.t.p.m.LogsPddDownMapper.insert - <== Updates: 1
2026-03-29 21:25:44 [http-nio-9000-exec-6] ERROR o.t.p.controller.PddOpenController - 验签失败
2026-03-29 21:25:44 [http-nio-9000-exec-6] DEBUG o.t.p.m.UserIdentifyMapper.insert - ==> Preparing: INSERT INTO user_identify ( uid, mobileNo, idType, idNumber, name ) VALUES ( ?, ?, ?, ?, ? )
2026-03-29 21:25:44 [http-nio-9000-exec-6] DEBUG o.t.p.m.UserIdentifyMapper.insert - ==> Parameters: 2038246229002321921(String), 01062420353(String), 韩国个人通关号(String), P160023834669(String), 김해곤(String)
2026-03-29 21:25:44 [http-nio-9000-exec-6] DEBUG o.t.p.m.UserIdentifyMapper.insert - <== Updates: 1
2026-03-29 21:25:44 [http-nio-9000-exec-6] INFO o.t.p.controller.PddOpenController - pdd.service.conso.user.identify
2026-03-29 21:25:44 [http-nio-9000-exec-6] INFO org.ta.pddserver.utils.UniPassUtil - url:https://unipass.customs.go.kr:38010/ext/rest/persEcmQry/retrievePersEcm?crkyCn=g240g274x016o063l080g030v2&persEcm=P160023834669&pltxNm=김해곤&cralTelno=01062420353
2026-03-29 21:25:46 [http-nio-9000-exec-6] INFO org.ta.pddserver.utils.UniPassUtil - body:<?xml version="1.0" encoding="UTF-8" standalone="yes"?><persEcmQryRtnVo><tCnt>1</tCnt><valtPridStrtDt>20260220</valtPridStrtDt><valtPridXpirDt>20270603</valtPridXpirDt></persEcmQryRtnVo>
2026-03-29 21:25:46 [http-nio-9000-exec-6] INFO o.t.p.controller.PddOpenController - RESP:
{"success":true}
2026-03-29 21:25:46 [http-nio-9000-exec-6] INFO o.t.p.config.RepeatedlyReadFilter - RepeatedlyReadFilter doFilter ok
2026-03-29 21:26:28 [http-nio-9000-exec-4] ERROR o.t.p.controller.PddOpenController - pdd_sign is empty
2026-03-29 21:26:28 [http-nio-9000-exec-4] INFO o.t.p.controller.PddOpenController - Request:
{"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834668","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"}
2026-03-29 21:26:28 [http-nio-9000-exec-4] DEBUG o.t.p.m.LogsPddDownMapper.insert - ==> Preparing: INSERT INTO logs_pdd_down ( uid, created, req ) VALUES ( ?, ?, ? )
2026-03-29 21:26:28 [http-nio-9000-exec-4] DEBUG o.t.p.m.LogsPddDownMapper.insert - ==> Parameters: 2038246411987222529(String), 2026-03-29 21:26:28.065(Timestamp), {"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834668","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"}(String)
2026-03-29 21:26:28 [http-nio-9000-exec-4] DEBUG o.t.p.m.LogsPddDownMapper.insert - <== Updates: 1
2026-03-29 21:26:28 [http-nio-9000-exec-4] ERROR o.t.p.controller.PddOpenController - 验签失败
2026-03-29 21:26:28 [http-nio-9000-exec-4] DEBUG o.t.p.m.UserIdentifyMapper.insert - ==> Preparing: INSERT INTO user_identify ( uid, mobileNo, idType, idNumber, name ) VALUES ( ?, ?, ?, ?, ? )
2026-03-29 21:26:28 [http-nio-9000-exec-4] DEBUG o.t.p.m.UserIdentifyMapper.insert - ==> Parameters: 2038246413912408065(String), 01062420353(String), 韩国个人通关号(String), P160023834668(String), 김해곤(String)
2026-03-29 21:26:28 [http-nio-9000-exec-4] DEBUG o.t.p.m.UserIdentifyMapper.insert - <== Updates: 1
2026-03-29 21:26:28 [http-nio-9000-exec-4] INFO o.t.p.controller.PddOpenController - pdd.service.conso.user.identify
2026-03-29 21:26:28 [http-nio-9000-exec-4] INFO org.ta.pddserver.utils.UniPassUtil - url:https://unipass.customs.go.kr:38010/ext/rest/persEcmQry/retrievePersEcm?crkyCn=g240g274x016o063l080g030v2&persEcm=P160023834668&pltxNm=김해곤&cralTelno=01062420353
2026-03-29 21:26:28 [http-nio-9000-exec-4] INFO o.t.p.controller.PddOpenController - RESP:
{"code":306,"success":false,"message":"其它网络类可以重试的未知错误(如依赖下游不可用或超时)"}
2026-03-29 21:26:28 [http-nio-9000-exec-4] INFO o.t.p.config.RepeatedlyReadFilter - RepeatedlyReadFilter doFilter ok
2026-03-29 21:26:31 [http-nio-9000-exec-7] ERROR o.t.p.controller.PddOpenController - pdd_sign is empty
2026-03-29 21:26:31 [http-nio-9000-exec-7] INFO o.t.p.controller.PddOpenController - Request:
{"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834668","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"}
2026-03-29 21:26:31 [http-nio-9000-exec-7] DEBUG o.t.p.m.LogsPddDownMapper.insert - ==> Preparing: INSERT INTO logs_pdd_down ( uid, created, req ) VALUES ( ?, ?, ? )
2026-03-29 21:26:31 [http-nio-9000-exec-7] DEBUG o.t.p.m.LogsPddDownMapper.insert - ==> Parameters: 2038246424779849729(String), 2026-03-29 21:26:31.113(Timestamp), {"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834668","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"}(String)
2026-03-29 21:26:31 [http-nio-9000-exec-7] DEBUG o.t.p.m.LogsPddDownMapper.insert - <== Updates: 1
2026-03-29 21:26:31 [http-nio-9000-exec-7] ERROR o.t.p.controller.PddOpenController - 验签失败
2026-03-29 21:26:31 [http-nio-9000-exec-7] DEBUG o.t.p.m.UserIdentifyMapper.insert - ==> Preparing: INSERT INTO user_identify ( uid, mobileNo, idType, idNumber, name ) VALUES ( ?, ?, ?, ?, ? )
2026-03-29 21:26:31 [http-nio-9000-exec-7] DEBUG o.t.p.m.UserIdentifyMapper.insert - ==> Parameters: 2038246425446744066(String), 01062420353(String), 韩国个人通关号(String), P160023834668(String), 김해곤(String)
2026-03-29 21:26:31 [http-nio-9000-exec-7] DEBUG o.t.p.m.UserIdentifyMapper.insert - <== Updates: 1
2026-03-29 21:26:31 [http-nio-9000-exec-7] INFO o.t.p.controller.PddOpenController - pdd.service.conso.user.identify
2026-03-29 21:26:31 [http-nio-9000-exec-7] INFO org.ta.pddserver.utils.UniPassUtil - url:https://unipass.customs.go.kr:38010/ext/rest/persEcmQry/retrievePersEcm?crkyCn=g240g274x016o063l080g030v2&persEcm=P160023834668&pltxNm=김해곤&cralTelno=01062420353
2026-03-29 21:26:34 [http-nio-9000-exec-7] INFO org.ta.pddserver.utils.UniPassUtil - body:<?xml version="1.0" encoding="UTF-8" standalone="yes"?><persEcmQryRtnVo><ntceInfo>유효성 검증결과 불일치</ntceInfo><tCnt>0</tCnt><persEcmQryRtnErrInfoVo><errMsgCn>납세의무자 개인통관고유부호가 존재하지 않습니다.</errMsgCn></persEcmQryRtnErrInfoVo></persEcmQryRtnVo>
2026-03-29 21:26:34 [http-nio-9000-exec-7] INFO o.t.p.controller.PddOpenController - RESP:
{"code":308,"success":false,"message":"用户用的是通关号,通关号不存在"}
2026-03-29 21:26:34 [http-nio-9000-exec-7] INFO o.t.p.config.RepeatedlyReadFilter - RepeatedlyReadFilter doFilter ok
2026-03-29 21:26:36 [http-nio-9000-exec-8] ERROR o.t.p.controller.PddOpenController - pdd_sign is empty
2026-03-29 21:26:36 [http-nio-9000-exec-8] INFO o.t.p.controller.PddOpenController - Request:
{"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834668","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"}
2026-03-29 21:26:36 [http-nio-9000-exec-8] DEBUG o.t.p.m.LogsPddDownMapper.insert - ==> Preparing: INSERT INTO logs_pdd_down ( uid, created, req ) VALUES ( ?, ?, ? )
2026-03-29 21:26:36 [http-nio-9000-exec-8] DEBUG o.t.p.m.LogsPddDownMapper.insert - ==> Parameters: 2038246448867737601(String), 2026-03-29 21:26:36.868(Timestamp), {"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834668","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"}(String)
2026-03-29 21:26:37 [http-nio-9000-exec-8] DEBUG o.t.p.m.LogsPddDownMapper.insert - <== Updates: 1
2026-03-29 21:26:37 [http-nio-9000-exec-8] ERROR o.t.p.controller.PddOpenController - 验签失败
2026-03-29 21:26:37 [http-nio-9000-exec-8] DEBUG o.t.p.m.UserIdentifyMapper.insert - ==> Preparing: INSERT INTO user_identify ( uid, mobileNo, idType, idNumber, name ) VALUES ( ?, ?, ?, ?, ? )
2026-03-29 21:26:37 [http-nio-9000-exec-8] DEBUG o.t.p.m.UserIdentifyMapper.insert - ==> Parameters: 2038246450763563010(String), 01062420353(String), 韩国个人通关号(String), P160023834668(String), 김해곤(String)
2026-03-29 21:26:37 [http-nio-9000-exec-8] DEBUG o.t.p.m.UserIdentifyMapper.insert - <== Updates: 1
2026-03-29 21:26:37 [http-nio-9000-exec-8] INFO o.t.p.controller.PddOpenController - pdd.service.conso.user.identify
2026-03-29 21:26:37 [http-nio-9000-exec-8] INFO org.ta.pddserver.utils.UniPassUtil - url:https://unipass.customs.go.kr:38010/ext/rest/persEcmQry/retrievePersEcm?crkyCn=g240g274x016o063l080g030v2&persEcm=P160023834668&pltxNm=김해곤&cralTelno=01062420353
2026-03-29 21:26:37 [http-nio-9000-exec-8] INFO org.ta.pddserver.utils.UniPassUtil - body:<?xml version="1.0" encoding="UTF-8" standalone="yes"?><persEcmQryRtnVo><ntceInfo>유효성 검증결과 불일치</ntceInfo><tCnt>0</tCnt><persEcmQryRtnErrInfoVo><errMsgCn>납세의무자 개인통관고유부호가 존재하지 않습니다.</errMsgCn></persEcmQryRtnErrInfoVo></persEcmQryRtnVo>
2026-03-29 21:26:37 [http-nio-9000-exec-8] INFO o.t.p.controller.PddOpenController - RESP:
{"code":308,"success":false,"message":"用户用的是通关号,通关号不存在"}
2026-03-29 21:26:37 [http-nio-9000-exec-8] INFO o.t.p.config.RepeatedlyReadFilter - RepeatedlyReadFilter doFilter ok
2026-03-29 21:27:38 [SpringApplicationShutdownHook] INFO o.s.b.w.e.tomcat.GracefulShutdown - Commencing graceful shutdown. Waiting for active requests to complete
2026-03-29 21:27:38 [tomcat-shutdown] INFO o.s.b.w.e.tomcat.GracefulShutdown - Graceful shutdown complete
2026-03-29 21:27:38 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Shutdown initiated...
2026-03-29 21:27:38 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Shutdown completed.
2026-03-29 21:27:40 [main] INFO o.ta.pddserver.PddServerApplication - Starting PddServerApplication using Java 25 with PID 11092 (E:\HJ\multiplesourcesecurity\PddServer\target\classes started by ChenH in E:\HJ\multiplesourcesecurity)
2026-03-29 21:27:40 [main] INFO o.ta.pddserver.PddServerApplication - No active profile set, falling back to 1 default profile: "default"
2026-03-29 21:27:42 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 9000 (http)
2026-03-29 21:27:42 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
2026-03-29 21:27:42 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.46]
2026-03-29 21:27:42 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext
2026-03-29 21:27:42 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1174 ms
2026-03-29 21:27:42 [main] INFO org.ta.pddserver.config.OpenFilter - OPEN 过滤器初始化
2026-03-29 21:27:42 [main] INFO org.ta.pddserver.config.APIFilter - API 过滤器初始化
2026-03-29 21:27:43 [main] INFO o.t.p.serviceutil.WaybillOperator - 初始化 WaybillOperator,获取当前面单池状态
2026-03-29 21:27:43 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Starting...
2026-03-29 21:27:44 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariCP - Added connection com.mysql.cj.jdbc.ConnectionImpl@605c7a9e
2026-03-29 21:27:44 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Start completed.
2026-03-29 21:27:44 [main] INFO o.t.p.serviceutil.WaybillOperator - 面单池更新完成,快递公司编码LOTTO,当前单号31775900987,剩余单号数量29493
2026-03-29 21:27:45 [main] INFO o.s.v.b.OptionalValidatorFactoryBean - Failed to set up a Bean Validation provider: jakarta.validation.NoProviderFoundException: Unable to create a Configuration, because no Jakarta Bean Validation provider could be found. Add a provider like Hibernate Validator (RI) to your classpath.
2026-03-29 21:27:45 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false)
2026-03-29 21:27:45 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 9000 (http) with context path '/'
2026-03-29 21:27:46 [main] INFO o.ta.pddserver.PddServerApplication - Started PddServerApplication in 5.618 seconds (process running for 6.211)
2026-03-29 21:27:46 [main] INFO o.t.p.config.PddApplicationRunner - 注入注册PDD-HTTP 日志保存工具
2026-03-29 21:27:52 [http-nio-9000-exec-2] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet'
2026-03-29 21:27:52 [http-nio-9000-exec-2] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
2026-03-29 21:27:52 [http-nio-9000-exec-2] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
2026-03-29 21:27:52 [http-nio-9000-exec-2] ERROR o.t.p.controller.PddOpenController - pdd_sign is empty
2026-03-29 21:27:52 [http-nio-9000-exec-2] INFO o.t.p.controller.PddOpenController - Request:
{"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834668","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"}
2026-03-29 21:27:53 [http-nio-9000-exec-2] ERROR o.t.p.controller.PddOpenController - 验签失败
2026-03-29 21:27:53 [http-nio-9000-exec-2] INFO o.t.p.controller.PddOpenController - pdd.service.conso.user.identify
2026-03-29 21:27:53 [http-nio-9000-exec-2] INFO org.ta.pddserver.utils.UniPassUtil - url:https://unipass.customs.go.kr:38010/ext/rest/persEcmQry/retrievePersEcm?crkyCn=g240g274x016o063l080g030v2&persEcm=P160023834668&pltxNm=김해곤&cralTelno=01062420353
2026-03-29 21:27:54 [http-nio-9000-exec-2] INFO o.t.p.controller.PddOpenController - RESP:
{"code":306,"success":false,"message":"其它网络类可以重试的未知错误(如依赖下游不可用或超时)"}
2026-03-29 21:27:54 [http-nio-9000-exec-2] INFO o.t.p.config.RepeatedlyReadFilter - RepeatedlyReadFilter doFilter ok
2026-03-29 21:27:56 [http-nio-9000-exec-1] ERROR o.t.p.controller.PddOpenController - pdd_sign is empty
2026-03-29 21:27:56 [http-nio-9000-exec-1] INFO o.t.p.controller.PddOpenController - Request:
{"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834668","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"}
2026-03-29 21:27:56 [http-nio-9000-exec-1] ERROR o.t.p.controller.PddOpenController - 验签失败
2026-03-29 21:27:56 [http-nio-9000-exec-1] INFO o.t.p.controller.PddOpenController - pdd.service.conso.user.identify
2026-03-29 21:27:56 [http-nio-9000-exec-1] INFO org.ta.pddserver.utils.UniPassUtil - url:https://unipass.customs.go.kr:38010/ext/rest/persEcmQry/retrievePersEcm?crkyCn=g240g274x016o063l080g030v2&persEcm=P160023834668&pltxNm=김해곤&cralTelno=01062420353
2026-03-29 21:28:54 [http-nio-9000-exec-1] INFO o.t.p.controller.PddOpenController - RESP:
{"code":306,"success":false,"message":"其它网络类可以重试的未知错误(如依赖下游不可用或超时)"}
2026-03-29 21:28:54 [http-nio-9000-exec-1] INFO o.t.p.config.RepeatedlyReadFilter - RepeatedlyReadFilter doFilter ok
2026-03-29 21:31:31 [http-nio-9000-exec-5] ERROR o.t.p.controller.PddOpenController - pdd_sign is empty
2026-03-29 21:31:31 [http-nio-9000-exec-5] INFO o.t.p.controller.PddOpenController - Request:
{"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834668","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"}
2026-03-29 21:31:31 [http-nio-9000-exec-5] ERROR o.t.p.controller.PddOpenController - 验签失败
2026-03-29 21:31:31 [http-nio-9000-exec-5] INFO o.t.p.controller.PddOpenController - pdd.service.conso.user.identify
2026-03-29 21:31:31 [http-nio-9000-exec-5] INFO org.ta.pddserver.utils.UniPassUtil - url:https://unipass.customs.go.kr:38010/ext/rest/persEcmQry/retrievePersEcm?crkyCn=g240g274x016o063l080g030v2&persEcm=P160023834668&pltxNm=김해곤&cralTelno=01062420353
2026-03-29 21:31:31 [http-nio-9000-exec-5] INFO o.t.p.controller.PddOpenController - RESP:
{"code":306,"success":false,"message":"其它网络类可以重试的未知错误(如依赖下游不可用或超时)"}
2026-03-29 21:31:31 [http-nio-9000-exec-5] INFO o.t.p.config.RepeatedlyReadFilter - RepeatedlyReadFilter doFilter ok
2026-03-29 21:31:33 [http-nio-9000-exec-6] ERROR o.t.p.controller.PddOpenController - pdd_sign is empty
2026-03-29 21:31:33 [http-nio-9000-exec-6] INFO o.t.p.controller.PddOpenController - Request:
{"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834668","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"}
2026-03-29 21:31:33 [http-nio-9000-exec-6] ERROR o.t.p.controller.PddOpenController - 验签失败
2026-03-29 21:31:33 [http-nio-9000-exec-6] INFO o.t.p.controller.PddOpenController - pdd.service.conso.user.identify
2026-03-29 21:31:33 [http-nio-9000-exec-6] INFO org.ta.pddserver.utils.UniPassUtil - url:https://unipass.customs.go.kr:38010/ext/rest/persEcmQry/retrievePersEcm?crkyCn=g240g274x016o063l080g030v2&persEcm=P160023834668&pltxNm=김해곤&cralTelno=01062420353
2026-03-29 21:31:55 [http-nio-9000-exec-6] INFO o.t.p.controller.PddOpenController - RESP:
{"code":306,"success":false,"message":"其它网络类可以重试的未知错误(如依赖下游不可用或超时)"}
2026-03-29 21:31:55 [http-nio-9000-exec-6] INFO o.t.p.config.RepeatedlyReadFilter - RepeatedlyReadFilter doFilter ok
2026-03-29 21:34:28 [SpringApplicationShutdownHook] INFO o.s.b.w.e.tomcat.GracefulShutdown - Commencing graceful shutdown. Waiting for active requests to complete
2026-03-29 21:34:28 [tomcat-shutdown] INFO o.s.b.w.e.tomcat.GracefulShutdown - Graceful shutdown complete
2026-03-29 21:34:28 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Shutdown initiated...
2026-03-29 21:34:28 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Shutdown completed.
2026-03-29 21:54:16 [main] INFO o.ta.pddserver.PddServerApplication - Starting PddServerApplication using Java 25 with PID 3280 (E:\HJ\multiplesourcesecurity\PddServer\target\classes started by ChenH in E:\HJ\multiplesourcesecurity)
2026-03-29 21:54:16 [main] INFO o.ta.pddserver.PddServerApplication - No active profile set, falling back to 1 default profile: "default"
2026-03-29 21:54:17 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 9000 (http)
2026-03-29 21:54:17 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
2026-03-29 21:54:17 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.46]
2026-03-29 21:54:17 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext
2026-03-29 21:54:17 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1102 ms
2026-03-29 21:54:17 [main] INFO org.ta.pddserver.config.OpenFilter - OPEN 过滤器初始化
2026-03-29 21:54:17 [main] INFO org.ta.pddserver.config.APIFilter - API 过滤器初始化
2026-03-29 21:54:18 [main] INFO o.t.p.serviceutil.WaybillOperator - 初始化 WaybillOperator,获取当前面单池状态
2026-03-29 21:54:18 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Starting...
2026-03-29 21:54:41 [main] WARN o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'pddLocalController': Injection of resource dependencies failed
2026-03-29 21:54:41 [main] INFO o.a.catalina.core.StandardService - Stopping service [Tomcat]
2026-03-29 21:54:41 [main] INFO o.s.b.a.l.ConditionEvaluationReportLogger -
Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled.
2026-03-29 21:54:41 [main] ERROR o.s.boot.SpringApplication - Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'pddLocalController': Injection of resource dependencies failed
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:372)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1459)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:606)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:529)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:339)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:373)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.instantiateSingleton(DefaultListableBeanFactory.java:1221)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingleton(DefaultListableBeanFactory.java:1187)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:1123)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:987)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:627)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:752)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:439)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:318)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1361)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1350)
at org.ta.pddserver.PddServerApplication.main(PddServerApplication.java:12)
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'waybillOperator': Invocation of init method failed
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:222)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:429)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1818)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:607)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:529)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:339)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:373)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:207)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.resolveBeanByName(AbstractAutowireCapableBeanFactory.java:468)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:606)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:577)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:739)
at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:272)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:146)
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:369)
... 19 common frames omitted
Caused by: org.mybatis.spring.MyBatisSystemException:
### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection
### The error may exist in org/ta/pddserver/mapper/WaybillSeaMapper.java (best guess)
### The error may involve org.ta.pddserver.mapper.WaybillSeaMapper.selectFirst
### The error occurred while executing a query
### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection
at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:99)
at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:347)
at jdk.proxy2/jdk.proxy2.$Proxy79.selectOne(Unknown Source)
at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:154)
at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:87)
at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:152)
at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
at jdk.proxy2/jdk.proxy2.$Proxy123.selectFirst(Unknown Source)
at org.ta.pddserver.service.impl.WaybillSeaImpl.getFirstUsable(WaybillSeaImpl.java:14)
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104)
at java.base/java.lang.reflect.Method.invoke(Method.java:565)
at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:360)
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:724)
at org.ta.pddserver.service.impl.WaybillSeaImpl$$SpringCGLIB$$0.getFirstUsable(<generated>)
at org.ta.pddserver.serviceutil.WaybillOperator.init(WaybillOperator.java:31)
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104)
at java.base/java.lang.reflect.Method.invoke(Method.java:565)
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMethod.invoke(InitDestroyAnnotationBeanPostProcessor.java:457)
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:401)
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:219)
... 34 common frames omitted
Caused by: org.apache.ibatis.exceptions.PersistenceException:
### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection
### The error may exist in org/ta/pddserver/mapper/WaybillSeaMapper.java (best guess)
### The error may involve org.ta.pddserver.mapper.WaybillSeaMapper.selectFirst
### The error occurred while executing a query
### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection
at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30)
at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:156)
at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147)
at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:142)
at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:75)
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104)
at java.base/java.lang.reflect.Method.invoke(Method.java:565)
at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:333)
... 52 common frames omitted
Caused by: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection
at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:84)
at org.mybatis.spring.transaction.SpringManagedTransaction.openConnection(SpringManagedTransaction.java:77)
at org.mybatis.spring.transaction.SpringManagedTransaction.getConnection(SpringManagedTransaction.java:64)
at org.apache.ibatis.executor.BaseExecutor.getConnection(BaseExecutor.java:348)
at org.apache.ibatis.executor.SimpleExecutor.prepareStatement(SimpleExecutor.java:89)
at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:64)
at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:336)
at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:158)
at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:110)
at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:90)
at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:154)
... 58 common frames omitted
Caused by: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
at com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:174) at com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:174)
...@@ -427,13 +43,12 @@ The last packet sent successfully to the server was 0 milliseconds ago. The driv ...@@ -427,13 +43,12 @@ The last packet sent successfully to the server was 0 milliseconds ago. The driv
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:370) at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:370)
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:207) at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:207)
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:488) at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:488)
at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:576) at com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:752)
at com.zaxxer.hikari.pool.HikariPool.<init>(HikariPool.java:97) at com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:731)
at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:111) at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:328)
at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:160) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1090)
at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:118) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:614)
at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:81) at java.base/java.lang.Thread.run(Thread.java:1474)
... 68 common frames omitted
Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link failure Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
...@@ -448,101 +63,130 @@ The last packet sent successfully to the server was 0 milliseconds ago. The driv ...@@ -448,101 +63,130 @@ The last packet sent successfully to the server was 0 milliseconds ago. The driv
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) at com.mysql.cj.NativeSession.connect(NativeSession.java:120)
at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:949) at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:949)
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:819) at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:819)
... 81 common frames omitted ... 13 common frames omitted
Caused by: java.net.ConnectException: Connection timed out: getsockopt Caused by: java.net.SocketTimeoutException: Connect timed out
at java.base/sun.nio.ch.Net.pollConnect(Native Method) at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:639)
at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:550)
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:594) at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:594)
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:284) at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:284)
at java.base/java.net.Socket.connect(Socket.java:659) at java.base/java.net.Socket.connect(Socket.java:659)
at com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:156) at com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:156)
at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:63) at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:63)
... 84 common frames omitted ... 16 common frames omitted
2026-03-29 21:54:49 [main] INFO o.ta.pddserver.PddServerApplication - Starting PddServerApplication using Java 25 with PID 23460 (E:\HJ\multiplesourcesecurity\PddServer\target\classes started by ChenH in E:\HJ\multiplesourcesecurity) 2026-04-02 22:59:35 [SpringApplicationShutdownHook] INFO o.s.b.w.e.tomcat.GracefulShutdown - Commencing graceful shutdown. Waiting for active requests to complete
2026-03-29 21:54:49 [main] INFO o.ta.pddserver.PddServerApplication - No active profile set, falling back to 1 default profile: "default" 2026-04-02 22:59:35 [tomcat-shutdown] INFO o.s.b.w.e.tomcat.GracefulShutdown - Graceful shutdown complete
2026-03-29 21:54:50 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 9000 (http) 2026-04-02 22:59:35 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Shutdown initiated...
2026-03-29 21:54:51 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] 2026-04-02 22:59:36 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Shutdown completed.
2026-03-29 21:54:51 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.46] 2026-04-02 22:59:37 [main] INFO o.ta.pddserver.PddServerApplication - Starting PddServerApplication using Java 25.0.2 with PID 36338 (/Users/allen/Documents/HJCloudProjects/multiplesourcesecurity/PddServer/target/classes started by allen in /Users/allen/Documents/HJCloudProjects/multiplesourcesecurity)
2026-03-29 21:54:51 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext 2026-04-02 22:59:37 [main] INFO o.ta.pddserver.PddServerApplication - No active profile set, falling back to 1 default profile: "default"
2026-03-29 21:54:51 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1265 ms 2026-04-02 22:59:37 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 9000 (http)
2026-03-29 21:54:51 [main] INFO org.ta.pddserver.config.OpenFilter - OPEN 过滤器初始化 2026-04-02 22:59:37 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
2026-03-29 21:54:51 [main] INFO org.ta.pddserver.config.APIFilter - API 过滤器初始化 2026-04-02 22:59:37 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.46]
2026-03-29 21:54:52 [main] INFO o.t.p.serviceutil.WaybillOperator - 初始化 WaybillOperator,获取当前面单池状态 2026-04-02 22:59:37 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext
2026-03-29 21:54:52 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Starting... 2026-04-02 22:59:37 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 435 ms
2026-03-29 21:54:54 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariCP - Added connection com.mysql.cj.jdbc.ConnectionImpl@75527e36 2026-04-02 22:59:37 [main] INFO org.ta.pddserver.config.OpenFilter - OPEN 过滤器初始化
2026-03-29 21:54:54 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Start completed. 2026-04-02 22:59:37 [main] INFO org.ta.pddserver.config.APIFilter - API 过滤器初始化
2026-03-29 21:54:54 [main] INFO o.t.p.serviceutil.WaybillOperator - 面单池更新完成,快递公司编码LOTTO,当前单号31775900987,剩余单号数量29493 2026-04-02 22:59:38 [main] INFO o.t.p.serviceutil.WaybillOperator - 初始化 WaybillOperator,获取当前面单池状态
2026-03-29 21:54:54 [main] INFO o.s.v.b.OptionalValidatorFactoryBean - Failed to set up a Bean Validation provider: jakarta.validation.NoProviderFoundException: Unable to create a Configuration, because no Jakarta Bean Validation provider could be found. Add a provider like Hibernate Validator (RI) to your classpath. 2026-04-02 22:59:38 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Starting...
2026-03-29 21:54:55 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) 2026-04-02 22:59:39 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariCP - Added connection com.mysql.cj.jdbc.ConnectionImpl@141aba65
2026-03-29 21:54:55 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 9000 (http) with context path '/' 2026-04-02 22:59:39 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Start completed.
2026-03-29 21:54:55 [main] INFO o.ta.pddserver.PddServerApplication - Started PddServerApplication in 6.228 seconds (process running for 6.866) 2026-04-02 22:59:39 [main] INFO o.t.p.serviceutil.WaybillOperator - 面单池更新完成,快递公司编码LOTTO,当前单号31775900987,剩余单号数量29493
2026-03-29 21:54:55 [main] INFO o.t.p.config.PddApplicationRunner - 注入注册PDD-HTTP 日志保存工具 2026-04-02 22:59:39 [main] INFO o.s.v.b.OptionalValidatorFactoryBean - Failed to set up a Bean Validation provider: jakarta.validation.NoProviderFoundException: Unable to create a Configuration, because no Jakarta Bean Validation provider could be found. Add a provider like Hibernate Validator (RI) to your classpath.
2026-03-29 21:54:57 [scheduling-1] INFO o.t.pddserver.serviceutil.GDOperator - 2026年3月29日 21:54:57 工单数量:0 2026-04-02 22:59:39 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false)
2026-03-29 21:55:00 [http-nio-9000-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' 2026-04-02 22:59:40 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 9000 (http) with context path '/'
2026-03-29 21:55:00 [http-nio-9000-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' 2026-04-02 22:59:40 [main] INFO o.ta.pddserver.PddServerApplication - Started PddServerApplication in 2.746 seconds (process running for 2.955)
2026-03-29 21:55:00 [http-nio-9000-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms 2026-04-02 22:59:40 [main] INFO o.t.p.config.PddApplicationRunner - 注入注册PDD-HTTP 日志保存工具
2026-03-29 21:55:01 [http-nio-9000-exec-1] ERROR o.t.p.controller.PddOpenController - pdd_sign is empty 2026-04-02 22:59:41 [scheduling-1] INFO o.t.pddserver.serviceutil.GDOperator - 2026年4月2日 22:59:41 工单数量:1
2026-03-29 21:55:01 [http-nio-9000-exec-1] INFO o.t.p.controller.PddOpenController - Request: 2026-04-02 22:59:56 [http-nio-9000-exec-2] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet'
{"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834668","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"} 2026-04-02 22:59:56 [http-nio-9000-exec-2] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
2026-03-29 21:55:01 [http-nio-9000-exec-1] ERROR o.t.p.controller.PddOpenController - 验签失败 2026-04-02 22:59:56 [http-nio-9000-exec-2] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms
2026-03-29 21:55:01 [http-nio-9000-exec-1] INFO o.t.p.controller.PddOpenController - pdd.service.conso.user.identify 2026-04-02 22:59:56 [http-nio-9000-exec-2] ERROR o.t.p.controller.PddOpenController - pdd_sign is empty
2026-03-29 21:55:01 [http-nio-9000-exec-1] INFO o.t.p.config.RepeatedlyReadFilter - RepeatedlyReadFilter doFilter ok 2026-04-02 22:59:56 [http-nio-9000-exec-2] INFO o.t.p.controller.PddOpenController - Request:
2026-03-29 21:55:52 [SpringApplicationShutdownHook] INFO o.s.b.w.e.tomcat.GracefulShutdown - Commencing graceful shutdown. Waiting for active requests to complete
2026-03-29 21:55:52 [tomcat-shutdown] INFO o.s.b.w.e.tomcat.GracefulShutdown - Graceful shutdown complete
2026-03-29 21:55:52 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Shutdown initiated...
2026-03-29 21:55:52 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Shutdown completed.
2026-03-29 21:55:56 [main] INFO o.ta.pddserver.PddServerApplication - Starting PddServerApplication using Java 25 with PID 13716 (E:\HJ\multiplesourcesecurity\PddServer\target\classes started by ChenH in E:\HJ\multiplesourcesecurity)
2026-03-29 21:55:56 [main] INFO o.ta.pddserver.PddServerApplication - No active profile set, falling back to 1 default profile: "default"
2026-03-29 21:55:57 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 9000 (http)
2026-03-29 21:55:57 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
2026-03-29 21:55:57 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.46]
2026-03-29 21:55:57 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext
2026-03-29 21:55:57 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1091 ms
2026-03-29 21:55:57 [main] INFO org.ta.pddserver.config.OpenFilter - OPEN 过滤器初始化
2026-03-29 21:55:57 [main] INFO org.ta.pddserver.config.APIFilter - API 过滤器初始化
2026-03-29 21:55:58 [main] INFO o.t.p.serviceutil.WaybillOperator - 初始化 WaybillOperator,获取当前面单池状态
2026-03-29 21:55:58 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Starting...
2026-03-29 21:55:59 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariCP - Added connection com.mysql.cj.jdbc.ConnectionImpl@605c7a9e
2026-03-29 21:55:59 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Start completed.
2026-03-29 21:55:59 [main] INFO o.t.p.serviceutil.WaybillOperator - 面单池更新完成,快递公司编码LOTTO,当前单号31775900987,剩余单号数量29493
2026-03-29 21:56:00 [main] INFO o.s.v.b.OptionalValidatorFactoryBean - Failed to set up a Bean Validation provider: jakarta.validation.NoProviderFoundException: Unable to create a Configuration, because no Jakarta Bean Validation provider could be found. Add a provider like Hibernate Validator (RI) to your classpath.
2026-03-29 21:56:00 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false)
2026-03-29 21:56:01 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 9000 (http) with context path '/'
2026-03-29 21:56:01 [main] INFO o.ta.pddserver.PddServerApplication - Started PddServerApplication in 5.34 seconds (process running for 5.893)
2026-03-29 21:56:01 [main] INFO o.t.p.config.PddApplicationRunner - 注入注册PDD-HTTP 日志保存工具
2026-03-29 21:56:02 [scheduling-1] INFO o.t.pddserver.serviceutil.GDOperator - 2026年3月29日 21:56:02 工单数量:0
2026-03-29 21:56:05 [http-nio-9000-exec-2] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet'
2026-03-29 21:56:05 [http-nio-9000-exec-2] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
2026-03-29 21:56:05 [http-nio-9000-exec-2] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms
2026-03-29 21:56:05 [http-nio-9000-exec-2] ERROR o.t.p.controller.PddOpenController - pdd_sign is empty
2026-03-29 21:56:05 [http-nio-9000-exec-2] INFO o.t.p.controller.PddOpenController - Request:
{"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834668","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"} {"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834668","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"}
2026-03-29 21:56:06 [http-nio-9000-exec-2] ERROR o.t.p.controller.PddOpenController - 验签失败 2026-04-02 22:59:57 [http-nio-9000-exec-2] ERROR o.t.p.controller.PddOpenController - 验签失败
2026-03-29 21:56:06 [http-nio-9000-exec-2] INFO o.t.p.controller.PddOpenController - pdd.service.conso.user.identify 2026-04-02 22:59:57 [http-nio-9000-exec-2] INFO o.t.p.controller.PddOpenController - pdd.service.conso.user.identify
2026-03-29 21:56:06 [http-nio-9000-exec-2] INFO org.ta.pddserver.utils.UniPassUtil - url:https://unipass.customs.go.kr:38010/ext/rest/persEcmQry/retrievePersEcm?crkyCn=g240g274x016o063l080g030v2&persEcm=P160023834668&pltxNm=김해곤&cralTelno=01062420353 2026-04-02 22:59:57 [http-nio-9000-exec-2] INFO org.ta.pddserver.utils.UniPassUtil - url:https://unipass.customs.go.kr:38010/ext/rest/persEcmQry/retrievePersEcm?crkyCn=g240g274x016o063l080g030v2&persEcm=P160023834668&pltxNm=김해곤&cralTelno=01062420353
2026-03-29 21:56:30 [http-nio-9000-exec-4] ERROR o.t.p.controller.PddOpenController - pdd_sign is empty 2026-04-02 23:00:16 [http-nio-9000-exec-2] INFO o.t.p.controller.PddOpenController - RESP:
2026-03-29 21:56:30 [http-nio-9000-exec-4] INFO o.t.p.controller.PddOpenController - Request:
{"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834668","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"}
2026-03-29 21:56:30 [http-nio-9000-exec-4] ERROR o.t.p.controller.PddOpenController - 验签失败
2026-03-29 21:56:30 [http-nio-9000-exec-4] INFO o.t.p.controller.PddOpenController - pdd.service.conso.user.identify
2026-03-29 21:56:30 [http-nio-9000-exec-4] INFO org.ta.pddserver.utils.UniPassUtil - url:https://unipass.customs.go.kr:38010/ext/rest/persEcmQry/retrievePersEcm?crkyCn=g240g274x016o063l080g030v2&persEcm=P160023834668&pltxNm=김해곤&cralTelno=01062420353
2026-03-29 21:56:32 [http-nio-9000-exec-4] INFO o.t.p.controller.PddOpenController - RESP:
{"code":306,"success":false,"message":"其它网络类可以重试的未知错误(如依赖下游不可用或超时)"} {"code":306,"success":false,"message":"其它网络类可以重试的未知错误(如依赖下游不可用或超时)"}
2026-03-29 21:56:32 [http-nio-9000-exec-4] INFO o.t.p.config.RepeatedlyReadFilter - RepeatedlyReadFilter doFilter ok 2026-04-02 23:02:55 [SpringApplicationShutdownHook] INFO o.s.b.w.e.tomcat.GracefulShutdown - Commencing graceful shutdown. Waiting for active requests to complete
2026-03-29 21:56:35 [http-nio-9000-exec-5] ERROR o.t.p.controller.PddOpenController - pdd_sign is empty 2026-04-02 23:02:55 [tomcat-shutdown] INFO o.s.b.w.e.tomcat.GracefulShutdown - Graceful shutdown complete
2026-03-29 21:56:35 [http-nio-9000-exec-5] INFO o.t.p.controller.PddOpenController - Request: 2026-04-02 23:02:55 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Shutdown initiated...
2026-04-02 23:02:55 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Shutdown completed.
2026-04-02 23:02:57 [main] INFO o.ta.pddserver.PddServerApplication - Starting PddServerApplication using Java 25.0.2 with PID 36382 (/Users/allen/Documents/HJCloudProjects/multiplesourcesecurity/PddServer/target/classes started by allen in /Users/allen/Documents/HJCloudProjects/multiplesourcesecurity)
2026-04-02 23:02:57 [main] INFO o.ta.pddserver.PddServerApplication - No active profile set, falling back to 1 default profile: "default"
2026-04-02 23:02:57 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 9000 (http)
2026-04-02 23:02:57 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
2026-04-02 23:02:57 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.46]
2026-04-02 23:02:57 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext
2026-04-02 23:02:57 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 435 ms
2026-04-02 23:02:57 [main] INFO org.ta.pddserver.config.OpenFilter - OPEN 过滤器初始化
2026-04-02 23:02:57 [main] INFO org.ta.pddserver.config.APIFilter - API 过滤器初始化
2026-04-02 23:02:58 [main] INFO o.t.p.serviceutil.WaybillOperator - 初始化 WaybillOperator,获取当前面单池状态
2026-04-02 23:02:58 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Starting...
2026-04-02 23:02:59 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariCP - Added connection com.mysql.cj.jdbc.ConnectionImpl@5e0f2c82
2026-04-02 23:02:59 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Start completed.
2026-04-02 23:02:59 [main] INFO o.t.p.serviceutil.WaybillOperator - 面单池更新完成,快递公司编码LOTTO,当前单号31775900987,剩余单号数量29493
2026-04-02 23:02:59 [main] INFO o.s.v.b.OptionalValidatorFactoryBean - Failed to set up a Bean Validation provider: jakarta.validation.NoProviderFoundException: Unable to create a Configuration, because no Jakarta Bean Validation provider could be found. Add a provider like Hibernate Validator (RI) to your classpath.
2026-04-02 23:02:59 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false)
2026-04-02 23:02:59 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 9000 (http) with context path '/'
2026-04-02 23:02:59 [main] INFO o.ta.pddserver.PddServerApplication - Started PddServerApplication in 2.611 seconds (process running for 2.834)
2026-04-02 23:02:59 [main] INFO o.t.p.config.PddApplicationRunner - 注入注册PDD-HTTP 日志保存工具
2026-04-02 23:03:01 [scheduling-1] INFO o.t.pddserver.serviceutil.GDOperator - 2026年4月2日 23:03:01 工单数量:1
2026-04-02 23:03:12 [http-nio-9000-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet'
2026-04-02 23:03:12 [http-nio-9000-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
2026-04-02 23:03:12 [http-nio-9000-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms
2026-04-02 23:03:12 [http-nio-9000-exec-1] ERROR o.t.p.controller.PddOpenController - pdd_sign is empty
2026-04-02 23:03:12 [http-nio-9000-exec-1] INFO o.t.p.controller.PddOpenController - Request:
{"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834668","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"} {"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834668","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"}
2026-03-29 21:56:36 [http-nio-9000-exec-5] ERROR o.t.p.controller.PddOpenController - 验签失败 2026-04-02 23:03:12 [http-nio-9000-exec-1] ERROR o.t.p.controller.PddOpenController - 验签失败
2026-03-29 21:56:36 [http-nio-9000-exec-5] INFO o.t.p.controller.PddOpenController - pdd.service.conso.user.identify 2026-04-02 23:03:13 [http-nio-9000-exec-1] INFO o.t.p.controller.PddOpenController - pdd.service.conso.user.identify
2026-03-29 21:56:36 [http-nio-9000-exec-5] INFO org.ta.pddserver.utils.UniPassUtil - url:https://unipass.customs.go.kr:38010/ext/rest/persEcmQry/retrievePersEcm?crkyCn=g240g274x016o063l080g030v2&persEcm=P160023834668&pltxNm=김해곤&cralTelno=01062420353 2026-04-02 23:03:13 [http-nio-9000-exec-1] INFO org.ta.pddserver.utils.UniPassUtil - url:https://unipass.customs.go.kr:38010/ext/rest/persEcmQry/retrievePersEcm?crkyCn=g240g274x016o063l080g030v2&persEcm=P160023834668&pltxNm=김해곤&cralTelno=01062420353
2026-03-29 21:56:36 [http-nio-9000-exec-5] INFO o.t.p.controller.PddOpenController - RESP: 2026-04-02 23:05:03 [SpringApplicationShutdownHook] INFO o.s.b.w.e.tomcat.GracefulShutdown - Commencing graceful shutdown. Waiting for active requests to complete
{"code":306,"success":false,"message":"其它网络类可以重试的未知错误(如依赖下游不可用或超时)"} 2026-04-02 23:05:11 [main] INFO o.ta.pddserver.PddServerApplication - Starting PddServerApplication using Java 25.0.2 with PID 36424 (/Users/allen/Documents/HJCloudProjects/multiplesourcesecurity/PddServer/target/classes started by allen in /Users/allen/Documents/HJCloudProjects/multiplesourcesecurity)
2026-03-29 21:56:36 [http-nio-9000-exec-5] INFO o.t.p.config.RepeatedlyReadFilter - RepeatedlyReadFilter doFilter ok 2026-04-02 23:05:11 [main] INFO o.ta.pddserver.PddServerApplication - No active profile set, falling back to 1 default profile: "default"
2026-03-29 21:56:39 [http-nio-9000-exec-2] INFO o.t.p.controller.PddOpenController - RESP: 2026-04-02 23:05:11 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 9000 (http)
{"code":306,"success":false,"message":"其它网络类可以重试的未知错误(如依赖下游不可用或超时)"} 2026-04-02 23:05:11 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat]
2026-03-29 21:56:39 [http-nio-9000-exec-2] INFO o.t.p.config.RepeatedlyReadFilter - RepeatedlyReadFilter doFilter ok 2026-04-02 23:05:11 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.46]
2026-03-29 21:57:00 [SpringApplicationShutdownHook] INFO o.s.b.w.e.tomcat.GracefulShutdown - Commencing graceful shutdown. Waiting for active requests to complete 2026-04-02 23:05:11 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext
2026-03-29 21:57:00 [tomcat-shutdown] INFO o.s.b.w.e.tomcat.GracefulShutdown - Graceful shutdown complete 2026-04-02 23:05:11 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 453 ms
2026-03-29 21:57:00 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Shutdown initiated... 2026-04-02 23:05:11 [main] INFO org.ta.pddserver.config.OpenFilter - OPEN 过滤器初始化
2026-03-29 21:57:00 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Shutdown completed. 2026-04-02 23:05:11 [main] INFO org.ta.pddserver.config.APIFilter - API 过滤器初始化
2026-04-02 23:05:11 [main] INFO o.t.p.serviceutil.WaybillOperator - 初始化 WaybillOperator,获取当前面单池状态
2026-04-02 23:05:11 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Starting...
2026-04-02 23:05:14 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariCP - Added connection com.mysql.cj.jdbc.ConnectionImpl@141aba65
2026-04-02 23:05:14 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Start completed.
2026-04-02 23:05:14 [main] INFO o.t.p.serviceutil.WaybillOperator - 面单池更新完成,快递公司编码LOTTO,当前单号31775900987,剩余单号数量29493
2026-04-02 23:05:14 [main] INFO o.s.v.b.OptionalValidatorFactoryBean - Failed to set up a Bean Validation provider: jakarta.validation.NoProviderFoundException: Unable to create a Configuration, because no Jakarta Bean Validation provider could be found. Add a provider like Hibernate Validator (RI) to your classpath.
2026-04-02 23:05:15 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false)
2026-04-02 23:05:15 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 9000 (http) with context path '/'
2026-04-02 23:05:15 [main] INFO o.ta.pddserver.PddServerApplication - Started PddServerApplication in 4.245 seconds (process running for 4.412)
2026-04-02 23:05:15 [main] INFO o.t.p.config.PddApplicationRunner - 注入注册PDD-HTTP 日志保存工具
2026-04-02 23:05:17 [scheduling-1] INFO o.t.pddserver.serviceutil.GDOperator - 2026年4月2日 23:05:17 工单数量:1
2026-04-02 23:05:27 [http-nio-9000-exec-2] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet'
2026-04-02 23:05:27 [http-nio-9000-exec-2] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
2026-04-02 23:05:27 [http-nio-9000-exec-2] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 0 ms
2026-04-02 23:05:27 [http-nio-9000-exec-2] ERROR o.t.p.controller.PddOpenController - pdd_sign is empty
2026-04-02 23:05:27 [http-nio-9000-exec-2] INFO o.t.p.controller.PddOpenController - Request:
{"idType":"韩国个人通关号","name":"김해곤","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01062420353","type":"pdd.service.conso.user.identify","idNumber":"P160023834668","request_id":"-897897914","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1774600505"}
2026-04-02 23:05:28 [http-nio-9000-exec-2] ERROR o.t.p.controller.PddOpenController - 验签失败
2026-04-02 23:05:28 [http-nio-9000-exec-2] INFO o.t.p.controller.PddOpenController - pdd.service.conso.user.identify
2026-04-02 23:05:28 [http-nio-9000-exec-2] INFO org.ta.pddserver.utils.UniPassUtil - url:https://unipass.customs.go.kr:38010/ext/rest/persEcmQry/retrievePersEcm?crkyCn=g240g274x016o063l080g030v2&persEcm=P160023834668&pltxNm=김해곤&cralTelno=01062420353
2026-04-02 23:05:31 [http-nio-9000-exec-2] INFO org.ta.pddserver.utils.UniPassUtil - 获取个人通关信息结果失败,重新获取
2026-04-02 23:05:31 [http-nio-9000-exec-2] INFO org.ta.pddserver.utils.UniPassUtil - 查询成功
2026-04-02 23:05:31 [http-nio-9000-exec-2] INFO org.ta.pddserver.utils.UniPassUtil - body:<?xml version="1.0" encoding="UTF-8" standalone="yes"?><persEcmQryRtnVo><ntceInfo>유효성 검증결과 불일치</ntceInfo><tCnt>0</tCnt><persEcmQryRtnErrInfoVo><errMsgCn>납세의무자 개인통관고유부호가 존재하지 않습니다.</errMsgCn></persEcmQryRtnErrInfoVo></persEcmQryRtnVo>
2026-04-02 23:05:31 [http-nio-9000-exec-2] INFO o.t.p.controller.PddOpenController - RESP:
{"code":308,"success":false,"message":"用户用的是通关号,通关号不存在"}
2026-04-02 23:05:55 [http-nio-9000-exec-3] ERROR o.t.p.controller.PddOpenController - pdd_sign is empty
2026-04-02 23:05:55 [http-nio-9000-exec-3] INFO o.t.p.controller.PddOpenController - Request:
{"idType":"韩国个人通关号","name":"JIN YINGSHUN","from_client_id":"efaa680eb35e4bf49fca8a5df78c2291","mobileNo":"01055134389","type":"pdd.service.conso.user.identify","idNumber":"P230020638942","request_id":"2019451645","client_id":"8f5f3f9c92e847b2894fc9c0afce3d61","timestamp":"1775119622"}
2026-04-02 23:05:56 [http-nio-9000-exec-3] ERROR o.t.p.controller.PddOpenController - 验签失败
2026-04-02 23:05:57 [http-nio-9000-exec-3] INFO o.t.p.controller.PddOpenController - pdd.service.conso.user.identify
2026-04-02 23:05:57 [http-nio-9000-exec-3] INFO org.ta.pddserver.utils.UniPassUtil - url:https://unipass.customs.go.kr:38010/ext/rest/persEcmQry/retrievePersEcm?crkyCn=g240g274x016o063l080g030v2&persEcm=P230020638942&pltxNm=JIN YINGSHUN&cralTelno=01055134389
2026-04-02 23:06:01 [http-nio-9000-exec-3] INFO org.ta.pddserver.utils.UniPassUtil - 获取个人通关信息结果失败,重新获取
2026-04-02 23:06:01 [http-nio-9000-exec-3] INFO org.ta.pddserver.utils.UniPassUtil - 查询成功
2026-04-02 23:06:01 [http-nio-9000-exec-3] INFO org.ta.pddserver.utils.UniPassUtil - body:<?xml version="1.0" encoding="UTF-8" standalone="yes"?><persEcmQryRtnVo><tCnt>1</tCnt><valtPridStrtDt>20260401</valtPridStrtDt><valtPridXpirDt>20271001</valtPridXpirDt></persEcmQryRtnVo>
2026-04-02 23:06:01 [http-nio-9000-exec-3] INFO o.t.p.controller.PddOpenController - RESP:
{"success":true}
2026-04-02 23:06:29 [SpringApplicationShutdownHook] INFO o.s.b.w.e.tomcat.GracefulShutdown - Commencing graceful shutdown. Waiting for active requests to complete
2026-04-02 23:06:29 [tomcat-shutdown] INFO o.s.b.w.e.tomcat.GracefulShutdown - Graceful shutdown complete
2026-04-02 23:06:29 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Shutdown initiated...
2026-04-02 23:06:29 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Shutdown completed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment