Build path ->No action available/classpath .project 作用

本文介绍了解决Eclipse中导入SVN项目的常见问题:如何让项目正确识别为Java项目,包括修改.project文件以启用Java支持,以及如何配置classpath来包含必要的jar文件。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

     从SVN download 下来的项目,发现的.java 文件和平时的不一样,并且想加入jar 进去的时候没有Java Build Path 的选项,无法链接类的源码,项目也无法发布,这里记录分享:

    原因是,在项目里面找到.project ,写入

      

<natures>
 <nature>org.eclipse.jdt.core.javanature</nature>
</natures>

         

    这样就行了,里面有各种属性,简单的记录一下:

    1.工程名:<name></name>

    2.工程注释描述:<comment></comment>

    3.Eclipse插件:<natures></natures>

    4.加载方式:<buildSpec></buildSpec>

    关于里面能有哪些值,我这里就不多介绍了。而org.eclipse.jdt.core.javanature 是Java Development    Toolkit  的插件,很多JAVA API 等信息,都需要这个进行关联。更多的参考:http://blog.youkuaiyun.com/yestotofu/article/details/5906573

 

     eclipse 插件通过plugin.xml 里面进行管理的,也可以自定义项目类型,可参考:http://www.oecp.cn/hi/slx/blog/5298

 

     项目里面还有.classpath 文件,包含了你需要的jar包,eclipse 会遍历里面内容,属性有:

     1.源文件位置:src

     2.核心包:con

     3.jar 位置:lib

     4.输出class位置:output

    

 

<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <!--父项目坐标--> <parent> <!--统一管理依赖版本--> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.7.18</version> <relativePath/> </parent> <!--项目定位标识--> <groupId>com.ChangGuangSatellite</groupId> <artifactId>intelligence_finance_java</artifactId> <version>0.0.1-SNAPSHOT</version> <name>intelligence_finance_java</name> <description>confirmationSystem</description> <!--JDK版本--> <properties> <java.version>1.8</java.version> </properties> <!--项目依赖--> <dependencies> <!--web依赖包,web应用必备,内置tomcat--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!-- pageHelper 分页插件 --> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version>1.4.0</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> </dependency> <dependency> <groupId>jakarta.persistence</groupId> <artifactId>jakarta.persistence-api</artifactId> <version>3.1.0</version> </dependency> <!--springboot单元测试--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <!--springboot热部署--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> <optional>true</optional> </dependency> <!--aop依赖包--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency> <!--mysql驱动--> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.29</version> </dependency> <!--mongodb驱动--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-mongodb</artifactId> </dependency> <!-- mybatis-plus --> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.5.7</version> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.15</version> </dependency> <!--lombok简化实体类--> <!--官方文档:https://projectlombok.org/ --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.12</version> </dependency> <!-- JDBC --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> </dependency> <!--阿里巴巴json解析库--> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.54</version> </dependency> <!--JWT token生成校验工具--> <dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt</artifactId> <version>0.9.1</version> </dependency> <!--swagger增强工具依赖包,方便生成接口文档--> <!--官方文档:https://doc.xiaominfo.com/knife4j/documentation/ --> <dependency> <groupId>com.github.xiaoymin</groupId> <artifactId>knife4j-spring-boot-starter</artifactId> <version>2.0.1</version> </dependency> <!--Hutool工具包--> <!--官方文档:https://www.hutool.cn/docs/#/ --> <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>5.6.7</version> </dependency> <!--spring scurity 登录验证--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> <!--redis依赖--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> <!-- excel插件依赖--> <dependency> <groupId>com.alibaba</groupId> <artifactId>easyexcel</artifactId> <version>2.1.6</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.12.0</version> </dependency> <!-- 用来开启事务使用 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>2.2.6.RELEASE</version> <configuration> <excludes> <exclude> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </exclude> </excludes> </configuration> </plugin> <!-- 打包跳过单元测试--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTests> </configuration> </plugin> </plugins> <!-- xml文件--> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includes> <filtering>false</filtering> </resource> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includes> <filtering>false</filtering> </resource> </resources> </build> </project> 2025-07-15 16:47:16.884 ERROR 77564 --- [ restartedMain] o.s.b.d.LoggingFailureAnalysisReporter : *************************** APPLICATION FAILED TO START *************************** Description: An attempt was made to call a method that does not exist. The attempt was made from the following location: com.baomidou.mybatisplus.core.MybatisMapperAnnotationBuilder.parse(MybatisMapperAnnotationBuilder.java:122) The following method did not exist: org.apache.ibatis.session.Configuration.parsePendingMethods(Z)V The calling method's class, com.baomidou.mybatisplus.core.MybatisMapperAnnotationBuilder, was loaded from the following location: jar:file:/D:/Develop/software/maven-repository/com/baomidou/mybatis-plus-core/3.5.9/mybatis-plus-core-3.5.9.jar!/com/baomidou/mybatisplus/core/MybatisMapperAnnotationBuilder.class The called method's class, org.apache.ibatis.session.Configuration, is available from the following locations: jar:file:/D:/Develop/software/maven-repository/org/mybatis/mybatis/3.5.15/mybatis-3.5.15.jar!/org/apache/ibatis/session/Configuration.class The called method's class hierarchy was loaded from the following locations: org.apache.ibatis.session.Configuration: file:/D:/Develop/software/maven-repository/org/mybatis/mybatis/3.5.15/mybatis-3.5.15.jar Action: Correct the classpath of your application so that it contains compatible versions of the classes com.baomidou.mybatisplus.core.MybatisMapperAnnotationBuilder and org.apache.ibatis.session.Configuration Process finished with exit code 1 报错分析
07-16
2025-07-14T15:24:18.501+08:00 ERROR 6828 --- [takeout system] [ main] o.s.b.d.LoggingFailureAnalysisReporter : *************************** APPLICATION FAILED TO START *************************** Description: An attempt was made to call a method that does not exist. The attempt was made from the following location: com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties$CoreConfiguration.applyTo(MybatisPlusProperties.java:357) The following method did not exist: 'void org.apache.ibatis.session.Configuration.setNullableOnForEach(boolean)' The calling method's class, com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties$CoreConfiguration, was loaded from the following location: jar:file:/C:/Users/123/.m2/repository/com/baomidou/mybatis-plus-spring-boot-autoconfigure/3.5.7/mybatis-plus-spring-boot-autoconfigure-3.5.7.jar!/com/baomidou/mybatisplus/autoconfigure/MybatisPlusProperties$CoreConfiguration.class The called method's class, org.apache.ibatis.session.Configuration, is available from the following locations: jar:file:/C:/Users/123/.m2/repository/org/mybatis/mybatis/3.5.7/mybatis-3.5.7.jar!/org/apache/ibatis/session/Configuration.class The called method's class hierarchy was loaded from the following locations: org.apache.ibatis.session.Configuration: file:/C:/Users/123/.m2/repository/org/mybatis/mybatis/3.5.7/mybatis-3.5.7.jar Action: Correct the classpath of your application so that it contains compatible versions of the classes com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties$CoreConfiguration and org.apache.ibatis.session.Configuration 这个是什么原因
07-15
D:\develop\Java\jdk1.8.0_202\bin\java.exe -XX:TieredStopAtLevel=1 -noverify -Dspring.output.ansi.enabled=always -Dcom.sun.management.jmxremote -Dspring.jmx.enabled=true -Dspring.liveBeansView.mbeanDomain -Dspring.application.admin.enabled=true "-javaagent:D:\develop\IntelliJ IDEA 2022.2.4\lib\idea_rt.jar=55174:D:\develop\IntelliJ IDEA 2022.2.4\bin" -Dfile.encoding=UTF-8 -classpath C:\Users\12706\AppData\Local\Temp\classpath487939550.jar com.Application 09:23:12.320 [main] DEBUG uk.org.lidalia.sysoutslf4j.context.SysOutOverSLF4JInitialiser - Your logging framework class ch.qos.logback.classic.Logger should not need access to the standard println methods on the console, so you should not need to register a logging system package. 09:23:12.338 [main] INFO uk.org.lidalia.sysoutslf4j.context.SysOutOverSLF4J - Replaced standard System.out and System.err PrintStreams with SLF4JPrintStreams 09:23:12.346 [main] INFO uk.org.lidalia.sysoutslf4j.context.SysOutOverSLF4J - Redirected System.out and System.err to SLF4J for this context [2025-07-11 09:23:13.866] [background-preinit] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.hibernate.validator.internal.util.Version] [] [] [] [HV000001: Hibernate Validator 6.1.7.Final] [2025-07-11 09:23:14.573] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor] [] [] [] [Post-processing PropertySource instances] [2025-07-11 09:23:14.639] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.EncryptablePropertySourceConverter] [] [] [] [Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy] [2025-07-11 09:23:14.640] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.EncryptablePropertySourceConverter] [] [] [] [Converting PropertySource bootstrap [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper] [2025-07-11 09:23:14.640] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.EncryptablePropertySourceConverter] [] [] [] [Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper] [2025-07-11 09:23:14.640] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.EncryptablePropertySourceConverter] [] [] [] [Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableMapPropertySourceWrapper] [2025-07-11 09:23:14.641] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.EncryptablePropertySourceConverter] [] [] [] [Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper] [2025-07-11 09:23:14.641] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.EncryptablePropertySourceConverter] [] [] [] [Converting PropertySource springCloudClientHostInfo [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper] [2025-07-11 09:23:14.641] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.EncryptablePropertySourceConverter] [] [] [] [Converting PropertySource defaultProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper] [2025-07-11 09:23:14.722] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.resolver.DefaultLazyPropertyResolver] [] [] [] [Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver] [2025-07-11 09:23:14.723] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.detector.DefaultLazyPropertyDetector] [] [] [] [Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector] [2025-07-11 09:23:15.181] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.springframework.boot.SpringBootBanner] [] [] [] [] [2025-07-11 09:23:15.181] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.springframework.boot.SpringBootBanner] [] [] [] [ . ____ _ __ _ _] [2025-07-11 09:23:15.181] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.springframework.boot.SpringBootBanner] [] [] [] [ /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \] [2025-07-11 09:23:15.181] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.springframework.boot.SpringBootBanner] [] [] [] [( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \] [2025-07-11 09:23:15.181] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.springframework.boot.SpringBootBanner] [] [] [] [ \\/ ___)| |_)| | | | | || (_| | ) ) ) )] [2025-07-11 09:23:15.181] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.springframework.boot.SpringBootBanner] [] [] [] [ ' |____| .__|_| |_|_| |_\__, | / / / /] [2025-07-11 09:23:15.181] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.springframework.boot.SpringBootBanner] [] [] [] [ =========|_|==============|___/=/_/_/_/] [2025-07-11 09:23:15.182] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.springframework.boot.SpringBootBanner] [] [] [] [ :: Spring Boot :: (v2.3.12.RELEASE)] [2025-07-11 09:23:15.183] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.springframework.boot.SpringBootBanner] [] [] [] [] [2025-07-11 09:23:15.195] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.c.EnableEncryptablePropertiesConfiguration] [] [] [] [Bootstraping jasypt-string-boot auto configuration in context: application-1] [2025-07-11 09:23:15.196] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [com.Application] [] [] [] [The following profiles are active: local] [2025-07-11 09:23:39.820] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [o.s.d.r.config.RepositoryConfigurationDelegate] [] [] [] [Multiple Spring Data modules found, entering strict repository configuration mode!] [2025-07-11 09:23:39.824] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [o.s.d.r.config.RepositoryConfigurationDelegate] [] [] [] [Bootstrapping Spring Data Redis repositories in DEFAULT mode.] [2025-07-11 09:23:42.582] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [o.s.d.r.config.RepositoryConfigurationDelegate] [] [] [] [Finished Spring Data repository scanning in 2738ms. Found 0 Redis repository interfaces.] [2025-07-11 09:23:42.838] [main] [WARN ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [o.springframework.boot.actuate.endpoint.EndpointId] [] [] [] [Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.] [2025-07-11 09:23:45.264] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [o.springframework.cloud.context.scope.GenericScope] [] [] [] [BeanFactory id=1699efa7-1f22-3752-b0aa-e95b6200e2d7] [2025-07-11 09:23:45.623] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor] [] [] [] [Post-processing PropertySource instances] [2025-07-11 09:23:45.623] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.EncryptablePropertySourceConverter] [] [] [] [Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy] [2025-07-11 09:23:45.623] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.EncryptablePropertySourceConverter] [] [] [] [Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper] [2025-07-11 09:23:45.623] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.EncryptablePropertySourceConverter] [] [] [] [Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper] [2025-07-11 09:23:45.623] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.EncryptablePropertySourceConverter] [] [] [] [Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper] [2025-07-11 09:23:45.623] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.EncryptablePropertySourceConverter] [] [] [] [Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableMapPropertySourceWrapper] [2025-07-11 09:23:45.623] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.EncryptablePropertySourceConverter] [] [] [] [Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper] [2025-07-11 09:23:45.623] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.EncryptablePropertySourceConverter] [] [] [] [Converting PropertySource springCloudClientHostInfo [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper] [2025-07-11 09:23:45.623] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.EncryptablePropertySourceConverter] [] [] [] [Converting PropertySource applicationConfig: [classpath:/application-local.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper] [2025-07-11 09:23:45.623] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.EncryptablePropertySourceConverter] [] [] [] [Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper] [2025-07-11 09:23:45.624] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.EncryptablePropertySourceConverter] [] [] [] [Converting PropertySource springCloudDefaultProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper] [2025-07-11 09:23:45.624] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.EncryptablePropertySourceConverter] [] [] [] [Converting PropertySource cachedrandom [org.springframework.cloud.util.random.CachedRandomPropertySource] to EncryptablePropertySourceWrapper] [2025-07-11 09:23:45.624] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.EncryptablePropertySourceConverter] [] [] [] [Converting PropertySource class path resource [cache-default.properties] [org.springframework.core.io.support.ResourcePropertySource] to EncryptableMapPropertySourceWrapper] [2025-07-11 09:23:45.624] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.EncryptablePropertySourceConverter] [] [] [] [Converting PropertySource defaultProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper] [2025-07-11 09:23:45.877] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker] [] [] [] [Bean 'org.springframework.retry.annotation.RetryConfiguration' of type [org.springframework.retry.annotation.RetryConfiguration$$EnhancerBySpringCGLIB$$5fe0fbfa] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)] [2025-07-11 09:23:46.797] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.resolver.DefaultLazyPropertyResolver] [] [] [] [Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver] [2025-07-11 09:23:46.797] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [c.u.j.detector.DefaultLazyPropertyDetector] [] [] [] [Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector] [2025-07-11 09:23:47.274] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [o.s.boot.web.embedded.tomcat.TomcatWebServer] [] [] [] [Tomcat initialized with port(s): 8081 (http)] [2025-07-11 09:23:47.294] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.coyote.http11.Http11NioProtocol] [] [] [] [Initializing ProtocolHandler ["http-nio-8081"]] [2025-07-11 09:23:47.295] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.catalina.core.StandardService] [] [] [] [Starting service [Tomcat]] [2025-07-11 09:23:47.295] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.catalina.core.StandardEngine] [] [] [] [Starting Servlet engine: [Apache Tomcat/9.0.72]] [2025-07-11 09:23:47.513] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]] [] [] [] [Initializing Spring embedded WebApplicationContext] [2025-07-11 09:23:47.513] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [o.s.b.w.s.c.ServletWebServerApplicationContext] [] [] [] [Root WebApplicationContext: initialization completed in 32298 ms] [2025-07-11 09:23:47.875] [main] [WARN ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [com.netflix.config.sources.URLConfigurationSource] [] [] [] [No URLs will be polled as dynamic configuration sources.] [2025-07-11 09:23:47.875] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [com.netflix.config.sources.URLConfigurationSource] [] [] [] [To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.] [2025-07-11 09:23:47.892] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [com.netflix.config.DynamicPropertyFactory] [] [] [] [DynamicPropertyFactory is initialized with configuration sources: com.netflix.config.ConcurrentCompositeConfiguration@117578d0] [2025-07-11 09:23:49.389] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [pdfc.framework.sharding.dynamic.DataSourceRegister] [] [] [] [初始化数据源master_0] [2025-07-11 09:23:49.405] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [pdfc.framework.sharding.dynamic.DataSourceRegister] [] [] [] [初始化数据源master_1] [2025-07-11 09:23:49.408] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [pdfc.framework.sharding.dynamic.DataSourceRegister] [] [] [] [初始化数据源master_2] [2025-07-11 09:23:49.411] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [pdfc.framework.sharding.dynamic.DataSourceRegister] [] [] [] [初始化数据源base] [2025-07-11 09:23:52.380] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [o.s.cloud.openfeign.FeignClientFactoryBean] [] [] [] [For 'lis-policymanagement' URL not provided. Will try picking an instance via load-balancing.] [2025-07-11 09:23:52.514] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [o.s.cloud.openfeign.FeignClientFactoryBean] [] [] [] [For 'lis-policymanagement' URL not provided. Will try picking an instance via load-balancing.] [2025-07-11 09:23:52.786] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Logging initialized using 'class org.apache.ibatis.logging.stdout.StdOutImpl' adapter.] [2025-07-11 09:23:52.850] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [com.zaxxer.hikari.HikariDataSource] [] [] [] [HikariPool-1 - Starting...] [2025-07-11 09:23:52.915] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.QueryCNListUtils] [] [] [] [[AUTOBALANCE] The cluster obtains CNList from the user thread. | Cluster: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000] | CNList: [10.57.2.8:8000, 10.57.2.72:8000, 10.57.2.24:8000]] [2025-07-11 09:23:52.933] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.hostchooser.MultiHostChooser] [] [] [] [[AUTOBALANCE] The load balancing result of the cluster is: | Cluster: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000] | LoadBalanceResult: [10.57.2.72:8000, 10.57.2.24:8000, 10.57.2.8:8000]] [2025-07-11 09:23:52.935] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [[20c0c7a7-54ad-49a0-aaeb-0173d923045f] Try to connect. IP: 10.57.2.72:8000] [2025-07-11 09:23:53.038] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [[10.253.81.106:55247/10.57.2.72:8000] Connection is established. ID: 20c0c7a7-54ad-49a0-aaeb-0173d923045f] [2025-07-11 09:23:53.092] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.QueryCNListUtils] [] [] [] [[AUTOBALANCE] Try to refreshing CN list, the cluster: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000] connect To: 10.57.2.72:8000] [2025-07-11 09:23:53.093] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.QueryCNListUtils] [] [] [] [[AUTOBALANCE] For refreshing CN list, the cluster: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000] connect To: 10.57.2.72:8000] [2025-07-11 09:23:53.093] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [Connect complete. ID: 20c0c7a7-54ad-49a0-aaeb-0173d923045f] [2025-07-11 09:23:53.140] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [com.zaxxer.hikari.HikariDataSource] [] [] [] [HikariPool-1 - Start completed.] [2025-07-11 09:23:53.149] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [p.f.m.autoconfiguration.MybatisAutoConfiguration] [] [] [] [Current databaseProductName is [PostgreSQL]] [2025-07-11 09:23:53.233] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Registered plugin: 'com.sinosoft.resulthandler.ResultSetHandlerInterceptor@1b02c766'] [2025-07-11 09:23:53.233] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Registered plugin: 'com.sinosoft.mybatis.interceptors.StatementHandlerReplacer@4a9107d3'] [2025-07-11 09:23:53.233] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Registered plugin: 'pdfc.framework.mybatis.paginator.OffsetLimitInterceptor@2e0c81d'] [2025-07-11 09:23:53.243] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.QueryCNListUtils] [] [] [] [[AUTOBALANCE] The cluster obtains CNList from the user thread. | Cluster: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000] | CNList: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000]] [2025-07-11 09:23:53.244] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.hostchooser.MultiHostChooser] [] [] [] [[AUTOBALANCE] The load balancing result of the cluster is: | Cluster: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000] | LoadBalanceResult: [10.57.2.8:8000, 10.57.2.24:8000, 10.57.2.72:8000]] [2025-07-11 09:23:53.245] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [[a171974c-b7be-4162-a753-7c5db1bc5616] Try to connect. IP: 10.57.2.8:8000] [2025-07-11 09:23:53.308] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [[10.253.81.106:55248/10.57.2.8:8000] Connection is established. ID: a171974c-b7be-4162-a753-7c5db1bc5616] [2025-07-11 09:23:53.320] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [Connect complete. ID: a171974c-b7be-4162-a753-7c5db1bc5616] [2025-07-11 09:23:53.327] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\CommonDao.xml]'] [2025-07-11 09:23:53.334] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.QueryCNListUtils] [] [] [] [[AUTOBALANCE] The cluster obtains CNList from the user thread. | Cluster: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000] | CNList: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000]] [2025-07-11 09:23:53.334] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.hostchooser.MultiHostChooser] [] [] [] [[AUTOBALANCE] The load balancing result of the cluster is: | Cluster: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000] | LoadBalanceResult: [10.57.2.24:8000, 10.57.2.8:8000, 10.57.2.72:8000]] [2025-07-11 09:23:53.334] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [[9964791a-a49e-4e48-8ca9-25035f92dc6c] Try to connect. IP: 10.57.2.24:8000] [2025-07-11 09:23:53.402] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [[10.253.81.106:55249/10.57.2.24:8000] Connection is established. ID: 9964791a-a49e-4e48-8ca9-25035f92dc6c] [2025-07-11 09:23:53.404] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\PEdorOverDueFineBudgetDao.xml]'] [2025-07-11 09:23:53.413] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [Connect complete. ID: 9964791a-a49e-4e48-8ca9-25035f92dc6c] [2025-07-11 09:23:53.576] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\app\BatchInteractiveDataDao.xml]'] [2025-07-11 09:23:53.578] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.QueryCNListUtils] [] [] [] [[AUTOBALANCE] The cluster obtains CNList from the user thread. | Cluster: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000] | CNList: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000]] [2025-07-11 09:23:53.578] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.hostchooser.MultiHostChooser] [] [] [] [[AUTOBALANCE] The load balancing result of the cluster is: | Cluster: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000] | LoadBalanceResult: [10.57.2.72:8000, 10.57.2.24:8000, 10.57.2.8:8000]] [2025-07-11 09:23:53.578] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [[46d9659c-5962-402a-b7a4-9bd880c739cf] Try to connect. IP: 10.57.2.72:8000] [2025-07-11 09:23:53.593] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\app\BqStatisticsReportDao.xml]'] [2025-07-11 09:23:53.603] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\app\CheckImageDao.xml]'] [2025-07-11 09:23:53.621] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\app\ContInsuredDao.xml]'] [2025-07-11 09:23:53.639] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\app\ContRiskTBDetailDao.xml]'] [2025-07-11 09:23:53.647] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [[10.253.81.106:55251/10.57.2.72:8000] Connection is established. ID: 46d9659c-5962-402a-b7a4-9bd880c739cf] [2025-07-11 09:23:53.654] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\app\InvestQueryDao.xml]'] [2025-07-11 09:23:53.661] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [Connect complete. ID: 46d9659c-5962-402a-b7a4-9bd880c739cf] [2025-07-11 09:23:53.665] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\app\LapsesRefundDao.xml]'] [2025-07-11 09:23:53.676] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\app\PEdorTypeFFDao.xml]'] [2025-07-11 09:23:53.677] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.QueryCNListUtils] [] [] [] [[AUTOBALANCE] The cluster obtains CNList from the user thread. | Cluster: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000] | CNList: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000]] [2025-07-11 09:23:53.678] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.hostchooser.MultiHostChooser] [] [] [] [[AUTOBALANCE] The load balancing result of the cluster is: | Cluster: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000] | LoadBalanceResult: [10.57.2.8:8000, 10.57.2.24:8000, 10.57.2.72:8000]] [2025-07-11 09:23:53.678] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [[5c9c4136-f990-4e95-80bc-abfae53a9e92] Try to connect. IP: 10.57.2.8:8000] [2025-07-11 09:23:53.692] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\app\PadQueryDao.xml]'] [2025-07-11 09:23:53.716] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\app\ProposalEasyScanQueryDao.xml]'] [2025-07-11 09:23:53.726] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\app\ProposalInputDao.xml]'] [2025-07-11 09:23:53.739] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\app\QueryAppntTestDao.xml]'] [2025-07-11 09:23:53.741] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [[10.253.81.106:55252/10.57.2.8:8000] Connection is established. ID: 5c9c4136-f990-4e95-80bc-abfae53a9e92] [2025-07-11 09:23:53.751] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\app\SysBreakLockQueryDao.xml]'] [2025-07-11 09:23:53.754] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [Connect complete. ID: 5c9c4136-f990-4e95-80bc-abfae53a9e92] [2025-07-11 09:23:53.768] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.QueryCNListUtils] [] [] [] [[AUTOBALANCE] The cluster obtains CNList from the user thread. | Cluster: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000] | CNList: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000]] [2025-07-11 09:23:53.769] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.hostchooser.MultiHostChooser] [] [] [] [[AUTOBALANCE] The load balancing result of the cluster is: | Cluster: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000] | LoadBalanceResult: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000]] [2025-07-11 09:23:53.769] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [[b0a4705c-72a1-4484-9697-4d9c314239a4] Try to connect. IP: 10.57.2.24:8000] [2025-07-11 09:23:53.809] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\base\LMinterestRateBaseDao.xml]'] [2025-07-11 09:23:53.817] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\bq\CompensationDao.xml]'] [2025-07-11 09:23:53.830] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\bq\PEdorTypeZBDao.xml]'] [2025-07-11 09:23:53.833] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [[10.253.81.106:55253/10.57.2.24:8000] Connection is established. ID: b0a4705c-72a1-4484-9697-4d9c314239a4] [2025-07-11 09:23:53.844] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\bq\cm\BeforeSubmitDao.xml]'] [2025-07-11 09:23:53.845] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [Connect complete. ID: b0a4705c-72a1-4484-9697-4d9c314239a4] [2025-07-11 09:23:53.855] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\bq\cm\CheckBirthdayDao.xml]'] [2025-07-11 09:23:53.859] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.QueryCNListUtils] [] [] [] [[AUTOBALANCE] The cluster obtains CNList from the user thread. | Cluster: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000] | CNList: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000]] [2025-07-11 09:23:53.859] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.hostchooser.MultiHostChooser] [] [] [] [[AUTOBALANCE] The load balancing result of the cluster is: | Cluster: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000] | LoadBalanceResult: [10.57.2.72:8000, 10.57.2.8:8000, 10.57.2.24:8000]] [2025-07-11 09:23:53.859] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [[cd9051cf-e3be-4f5b-a2f3-8c6002977f53] Try to connect. IP: 10.57.2.72:8000] [2025-07-11 09:23:53.863] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\bq\cm\CheckIsTaxDao.xml]'] [2025-07-11 09:23:53.892] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\bq\cm\EdorTypeCMSaveDao.xml]'] [2025-07-11 09:23:53.924] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\bq\cm\PEdorTypeCMDao.xml]'] [2025-07-11 09:23:53.928] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [[10.253.81.106:55254/10.57.2.72:8000] Connection is established. ID: cd9051cf-e3be-4f5b-a2f3-8c6002977f53] [2025-07-11 09:23:53.933] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\bq\cm\VerifyRiskInfoDao.xml]'] [2025-07-11 09:23:53.940] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [Connect complete. ID: cd9051cf-e3be-4f5b-a2f3-8c6002977f53] [2025-07-11 09:23:53.956] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.QueryCNListUtils] [] [] [] [[AUTOBALANCE] The cluster obtains CNList from the user thread. | Cluster: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000] | CNList: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000]] [2025-07-11 09:23:53.956] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.hostchooser.MultiHostChooser] [] [] [] [[AUTOBALANCE] The load balancing result of the cluster is: | Cluster: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000] | LoadBalanceResult: [10.57.2.8:8000, 10.57.2.24:8000, 10.57.2.72:8000]] [2025-07-11 09:23:53.956] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [[22dc6bcf-7062-4213-90c0-25df4f08baeb] Try to connect. IP: 10.57.2.8:8000] [2025-07-11 09:23:53.970] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\bq\llcase\LLContDealMailDao.xml]'] [2025-07-11 09:23:53.992] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\briefapp\initFormDao.xml]'] [2025-07-11 09:23:54.006] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\business\DictionariesDao.xml]'] [2025-07-11 09:23:54.017] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [[10.253.81.106:55255/10.57.2.8:8000] Connection is established. ID: 22dc6bcf-7062-4213-90c0-25df4f08baeb] [2025-07-11 09:23:54.019] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\business\LMinterestRateDao.xml]'] [2025-07-11 09:23:54.028] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [Connect complete. ID: 22dc6bcf-7062-4213-90c0-25df4f08baeb] [2025-07-11 09:23:54.041] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.QueryCNListUtils] [] [] [] [[AUTOBALANCE] The cluster obtains CNList from the user thread. | Cluster: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000] | CNList: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000]] [2025-07-11 09:23:54.041] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.hostchooser.MultiHostChooser] [] [] [] [[AUTOBALANCE] The load balancing result of the cluster is: | Cluster: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000] | LoadBalanceResult: [10.57.2.24:8000, 10.57.2.8:8000, 10.57.2.72:8000]] [2025-07-11 09:23:54.041] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [[b171e128-9d5f-4a22-a8ea-918089711e19] Try to connect. IP: 10.57.2.24:8000] [2025-07-11 09:23:54.055] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\contract\task\MingYaAgentComPolicyDao.xml]'] [2025-07-11 09:23:54.082] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\contract\task\PublicAgentComPolicyDao.xml]'] [2025-07-11 09:23:54.090] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\contract\task\SkipDoubleRecordDao.xml]'] [2025-07-11 09:23:54.107] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\easysacn\EsModifyDao.xml]'] [2025-07-11 09:23:54.113] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [[10.253.81.106:55256/10.57.2.24:8000] Connection is established. ID: b171e128-9d5f-4a22-a8ea-918089711e19] [2025-07-11 09:23:54.123] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\finfee\FirstPayInputDao.xml]'] [2025-07-11 09:23:54.124] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [Connect complete. ID: b171e128-9d5f-4a22-a8ea-918089711e19] [2025-07-11 09:23:54.136] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\grxx\TaskReissueLetterDao.xml]'] [2025-07-11 09:23:54.138] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.QueryCNListUtils] [] [] [] [[AUTOBALANCE] The cluster obtains CNList from the user thread. | Cluster: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000] | CNList: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000]] [2025-07-11 09:23:54.139] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.hostchooser.MultiHostChooser] [] [] [] [[AUTOBALANCE] The load balancing result of the cluster is: | Cluster: [10.57.2.24:8000, 10.57.2.72:8000, 10.57.2.8:8000] | LoadBalanceResult: [10.57.2.72:8000, 10.57.2.8:8000, 10.57.2.24:8000]] [2025-07-11 09:23:54.139] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [[e89886a5-8dbe-44a7-bb25-7f64a194a171] Try to connect. IP: 10.57.2.72:8000] [2025-07-11 09:23:54.144] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\kernel\BusyReconciliationDao.xml]'] [2025-07-11 09:23:54.154] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\kernel\DailyBalanceDao.xml]'] [2025-07-11 09:23:54.164] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\kernel\DetailBalanceBLDao.xml]'] [2025-07-11 09:23:54.173] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\kernel\GetherBalanceDao.xml]'] [2025-07-11 09:23:54.184] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\kernel\KernelBalanceBLDao.xml]'] [2025-07-11 09:23:54.193] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\kernel\KernelBlcDao.xml]'] [2025-07-11 09:23:54.202] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\kernel\NXS_RenewalPayBusiblcDao.xml]'] [2025-07-11 09:23:54.210] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\kernel\RePrint_AutoWriteOffDao.xml]'] [2025-07-11 09:23:54.213] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [[10.253.81.106:55257/10.57.2.72:8000] Connection is established. ID: e89886a5-8dbe-44a7-bb25-7f64a194a171] [2025-07-11 09:23:54.217] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\kernel\TaxNBU015Dao.xml]'] [2025-07-11 09:23:54.226] [HikariPool-1 connection adder] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.postgresql.core.v3.ConnectionFactoryImpl] [] [] [] [Connect complete. ID: e89886a5-8dbe-44a7-bb25-7f64a194a171] [2025-07-11 09:23:54.226] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\kernel\TripartiteAgreementDao.xml]'] [2025-07-11 09:23:54.240] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\kernel\WriteOffDao.xml]'] [2025-07-11 09:23:54.271] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\kernel\YbtContQueryDao.xml]'] [2025-07-11 09:23:54.282] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\llcase\InsuranceClaimsDao.xml]'] [2025-07-11 09:23:54.290] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\llcase\LLAppealQueryDao.xml]'] [2025-07-11 09:23:54.303] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\lppayendorse\LPPayEndorseDao.xml]'] [2025-07-11 09:23:54.315] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\multimedia\PolicyQueryDao.xml]'] [2025-07-11 09:23:54.336] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\notice\NoticeListQueryDao.xml]'] [2025-07-11 09:23:54.348] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\notice\PrintQuestionNoticeDao.xml]'] [2025-07-11 09:23:54.359] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\notice\PrintUWNoticeDao.xml]'] [2025-07-11 09:23:54.375] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\notice\UWResulDao.xml]'] [2025-07-11 09:23:54.425] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\penotice\PrintPENoticeDao.xml]'] [2025-07-11 09:23:54.441] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\ruleengine\RuleEngineDao.xml]'] [2025-07-11 09:23:54.454] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\uw\BodyCheckPrintInputBackDao.xml]'] [2025-07-11 09:23:54.464] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\uw\NewLPXBSecondUWBackDao.xml]'] [2025-07-11 09:23:54.477] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\uw\PEBookingInputDao.xml]'] [2025-07-11 09:23:54.489] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\uw\UWBack1Dao.xml]'] [2025-07-11 09:23:54.501] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\uw\UWBackQueryDao.xml]'] [2025-07-11 09:23:54.518] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\uw\UWIndWriteBackDao.xml]'] [2025-07-11 09:23:54.534] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\uw\UWMenuHealthDao.xml]'] [2025-07-11 09:23:54.547] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'file [D:\javaproject\lis-pol\lis-pol-service-api\target\classes\mapper\ybt\YBTDataQueryDao.xml]'] [2025-07-11 09:23:54.562] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'URL [jar:file:/D:/javaproject/apache-maven-3.8.4/repository/pdfc/pdfc-sharding/4.1.7.0/pdfc-sharding-4.1.7.0.jar!/mapper/base/sharding/ShardingRulesBaseDao.xml]'] [2025-07-11 09:23:54.581] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'URL [jar:file:/D:/javaproject/apache-maven-3.8.4/repository/pdfc/pdfc-sharding/4.1.7.0/pdfc-sharding-4.1.7.0.jar!/mapper/base/sharding/ShardingRulesSlicesBaseDao.xml]'] [2025-07-11 09:23:54.588] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'URL [jar:file:/D:/javaproject/apache-maven-3.8.4/repository/pdfc/pdfc-sharding/4.1.7.0/pdfc-sharding-4.1.7.0.jar!/mapper/custom/sharding/ShardingRulesDao.xml]'] [2025-07-11 09:23:54.593] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.ibatis.logging.stdout.StdOutImpl] [] [] [] [Parsed mapper file: 'URL [jar:file:/D:/javaproject/apache-maven-3.8.4/repository/pdfc/pdfc-sharding/4.1.7.0/pdfc-sharding-4.1.7.0.jar!/mapper/custom/sharding/ShardingRulesSlicesDao.xml]'] [2025-07-11 09:23:57.540] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [o.s.cloud.openfeign.FeignClientFactoryBean] [] [] [] [For 'lis-policymanagement' URL not provided. Will try picking an instance via load-balancing.] [2025-07-11 09:23:57.611] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [o.s.cloud.openfeign.FeignClientFactoryBean] [] [] [] [For 'lis-policymanagement' URL not provided. Will try picking an instance via load-balancing.] [2025-07-11 09:23:57.682] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [o.s.cloud.openfeign.FeignClientFactoryBean] [] [] [] [For 'lis-policymanagement' URL not provided. Will try picking an instance via load-balancing.] [2025-07-11 09:23:57.731] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [o.s.cloud.openfeign.FeignClientFactoryBean] [] [] [] [For 'lis-policymanagement' URL not provided. Will try picking an instance via load-balancing.] [2025-07-11 09:23:57.791] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [o.s.cloud.openfeign.FeignClientFactoryBean] [] [] [] [For 'lis-policymanagement' URL not provided. Will try picking an instance via load-balancing.] [2025-07-11 09:23:57.911] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [o.s.cloud.openfeign.FeignClientFactoryBean] [] [] [] [For 'lis-policymanagement' URL not provided. Will try picking an instance via load-balancing.] [2025-07-11 09:23:58.048] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [o.s.cloud.openfeign.FeignClientFactoryBean] [] [] [] [For 'lis-policymanagement' URL not provided. Will try picking an instance via load-balancing.] [2025-07-11 09:23:58.141] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [o.s.cloud.openfeign.FeignClientFactoryBean] [] [] [] [For 'lis-policymanagement' URL not provided. Will try picking an instance via load-balancing.] [2025-07-11 09:23:58.360] [main] [WARN ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext] [] [] [] [Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'underWriteApi': Unsatisfied dependency expressed through field 'underWriteService'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.controller.app.service.UnderWriteService' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}] [2025-07-11 09:24:01.455] [NettyClientSelector_1] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [RocketmqRemoting] [] [] [] [closeChannel: close the connection to remote address[] result: true] [2025-07-11 09:24:03.746] [NettyClientSelector_1] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [RocketmqRemoting] [] [] [] [closeChannel: close the connection to remote address[] result: true] [2025-07-11 09:24:06.761] [NettyClientSelector_1] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [RocketmqRemoting] [] [] [] [closeChannel: close the connection to remote address[] result: true] [2025-07-11 09:24:06.763] [NettyClientSelector_1] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [RocketmqRemoting] [] [] [] [closeChannel: close the connection to remote address[10.57.16.35:9876] result: true] [2025-07-11 09:24:09.781] [NettyClientSelector_1] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [RocketmqRemoting] [] [] [] [closeChannel: close the connection to remote address[] result: true] [2025-07-11 09:24:09.783] [NettyClientSelector_1] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [RocketmqRemoting] [] [] [] [closeChannel: close the connection to remote address[10.57.16.35:9876] result: true] [2025-07-11 09:24:09.815] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [org.apache.catalina.core.StandardService] [] [] [] [Stopping service [Tomcat]] [2025-07-11 09:24:09.834] [main] [INFO ] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [o.s.b.a.l.ConditionEvaluationReportLoggingListener] [] [] [] [ Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.] [2025-07-11 09:24:09.861] [main] [ERROR] [TID: N/A] [DESKTOP-SGRVN62/10.253.81.106] [] [o.s.b.diagnostics.LoggingFailureAnalysisReporter] [] [] [] [ *************************** APPLICATION FAILED TO START *************************** Description: Field underWriteService in com.controller.app.api.UnderWriteApi required a bean of type 'com.controller.app.service.UnderWriteService' that could not be found. The injection point has the following annotations: - @org.springframework.beans.factory.annotation.Autowired(required=true) Action: Consider defining a bean of type 'com.controller.app.service.UnderWriteService' in your configuration. ] Process finished with exit code 1
07-12
翻译: Of course. After reviewing your Gradle files, it's clear the main problem is not a single error but a mix of structural issues, outdated practices, and critical typos. Your build script merges settings that should be in separate files and uses fragile methods that will cause constant problems. Here is a breakdown of the issues and a step-by-step guide to fix them. ----- ### \#\# 1. Critical Errors That Will Break the Build These issues need to be fixed first, as they will prevent Gradle from running correctly. #### **A. Typo in `targetSdk`** In your module's `build.gradle`, you have a typo. * **Problem:** `targetsdk 34` * **Fix:** It should be `targetSdk` (with a capital 'S'). <!-- end list --> ```groovy // In your module's build.gradle defaultConfig { minSdk 29 targetSdk 34 // FIX: Was 'targetsdk' } ``` #### **B. Typo in JaCoCo Configuration** In your `createOfflineTestCoverageReport` task, you have a typo in the word "configurations". * **Problem:** `classpath: configur3+ations.jacocoAnt.asPath` * **Fix:** It should be `configurations.jacocoAnt.asPath`. <!-- end list --> ```groovy // In your JaCoCo task ant.taskdef(name: 'report', classname: 'org.jacoco.ant.ReportTask', classpath: configurations.jacocoAnt.asPath) // FIX: Was 'configur3+ations' ``` ----- ### \#\# 2. Major Structural Problems Your project's build logic is incorrectly structured. You've mixed settings for the root project and the `model_base` module into one file. #### **A. Root Project and Module Logic are Mixed** You should have at least two `build.gradle` files: one in the project's root directory and one inside your `model_base` module. * **Project Root `build.gradle` or `build.gradle.kts`:** Should contain `buildscript` settings (like the Android Gradle Plugin version) and `allprojects` repository settings. It should **not** contain `apply plugin: 'com.android.library'` or Android-specific settings like `compileSdk`. * **Module `app/build.gradle` or `library/build.gradle.kts`:** Should contain `plugins { id 'com.android.library' }`, the `android { ... }` block, and the `dependencies { ... }` for that specific module. #### **B. Action Plan: Restructure Your Files** **Step 1: Create a `settings.gradle` file in your project root** (if you don't have one). It tells Gradle which modules are part of your project. ```groovy // settings.gradle include ':model_base' // include ':app' // if you have an app module ``` **Step 2: Clean up your Root `build.gradle` file.** It should only contain build-wide information. ```groovy // Project Root: build.gradle // The buildscript block is an older pattern, but if you keep it: buildscript { repositories { google() mavenCentral() } dependencies { // Use a consistent version for AGP classpath 'com.android.tools.build:gradle:8.1.0' // You don't need JaCoCo here; the plugin handles it. } } allprojects { repositories { google() mavenCentral() maven { url "https://jitpack.io" } } } ``` **Step 3: Create/Fix your Module `model_base/build.gradle` file.** This is where most of your current code should go. ```groovy // Module: model_base/build.gradle // Use the plugins block at the top plugins { id 'com.android.library' id 'jacoco' // Apply jacoco plugin here } android { namespace 'com.st.model_base' compileSdk 34 defaultConfig { minSdk 29 targetSdk 34 // Corrected typo } // ... your other android settings } dependencies { // ... your dependencies implementation 'androidx.appcompat:appcompat:1.6.1' // Updated version } // ... your JaCoCo tasks and configuration ``` ----- ### \#\# 3. Bad Practices and Recommendations These are issues that make your build slow, fragile, and hard to maintain. #### **A. Manual `bootstrapClasspath` Manipulation is Very Bad** Your use of `options.compilerArgs << '-Xbootclasspath/p:...'` and manually rebuilding the `bootstrapClasspath` to include `framework.jar` is an extremely fragile and outdated practice. * **Why it's bad:** It overrides the standard Android compile environment. It can break with any update to AGP, Gradle, or Java. It makes your build completely dependent on a local JAR file. * **Recommendation:** **Remove all three `gradle.projectsEvaluated` blocks.** Rely on the `compileSdk 34` to provide the Android APIs. If you absolutely need APIs not available in the public SDK, this approach is still not recommended and indicates a potential design flaw. #### **B. `dependsOn(clean)` is an Anti-Pattern** Your line `createOfflineTestCoverageReport.dependsOn(clean)` is very inefficient. * **Why it's bad:** It forces a complete project clean and recompile **every time** you want to generate a report. This will make your build process incredibly slow. * **Recommendation:** **Delete this line.** Gradle's tasks are designed to be incremental. #### **C. Redundant Configurations** You have multiple `tasks.withType(Test)` and `gradle.projectsEvaluated` blocks. This makes the script confusing. * **Recommendation:** Combine them into single blocks to avoid conflicts and make the logic clear. #### **D. Outdated Dependencies and Repositories** * **JCenter is Deprecated:** Remove `jcenter()` from your repositories. It was shut down years ago and can slow down your build as Gradle tries to connect to it. `mavenCentral()` has replaced it. * **Old AppCompat Library:** `androidx.appcompat:appcompat:1.4.1` is old for `compileSdk 34`. Update it to a more recent version like `1.6.1` to avoid potential incompatibilities.
最新发布
07-24
### 回答问题 您提供的代码片段是一个 Eclipse 项目的 `.classpath` 文件,用于定义项目的类路径配置。以下是对其内容的详细分析以及如何在 Java Web 项目中使用这些配置。 --- #### 1. **文件功能分析** - `.classpath` 文件是 Eclipse IDE 自动生成的配置文件,用于指定项目的编译和运行时依赖。 - 它包含以下几种类型的条目: - `kind="src"`:表示源代码目录。 - `kind="lib"`:表示外部库(如 JAR 文件)。 - `kind="con"`:表示容器(Container),通常是 Eclipse 插件或运行时环境提供的依赖。 --- #### 2. **关键条目解释** ##### (1)**Java 版本配置** ```xml <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"> <attributes> <attribute name="owner.project.facets" value="java"/> </attributes> </classpathentry> ``` - 这一行指定了项目使用的 Java 版本为 JDK 1.6(即 Java SE 6)。 - 如果需要升级到更高版本,可以修改为 `JavaSE-1.8` 或其他版本。 ##### (2)**Web 容器配置** ```xml <classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.web.container"/> <classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.module.container"/> ``` - 这两行表示项目是一个 Web 应用程序,并且依赖于 Eclipse 的 Web 工具插件(WTP)提供的容器支持。 ##### (3)**外部库配置** ```xml <classpathentry kind="lib" path="WebRoot/WEB-INF/lib/mysql-connector-java-5.1.12-bin.jar"/> <classpathentry kind="lib" path="WebRoot/WEB-INF/lib/jstl.jar"/> <classpathentry kind="lib" path="WebRoot/WEB-INF/lib/standard.jar"/> <classpathentry kind="lib" path="WebRoot/WEB-INF/lib/servlet-api.jar"/> ``` - 这些条目指定了项目依赖的外部库: - `mysql-connector-java-5.1.12-bin.jar`:用于连接 MySQL 数据库。 - `jstl.jar` 和 `standard.jar`:用于支持 JSTL 标签库。 - `servlet-api.jar`:提供 Servlet API 支持。 ##### (4)**输出目录** ```xml <classpathentry kind="output" path="WebRoot/WEB-INF/classes"/> ``` - 这一行指定了编译后的类文件存放目录为 `WebRoot/WEB-INF/classes`。 --- #### 3. **常见问题及解决方法** ##### (1)**无法找到 Servlet 类** 原因可能是: - `servlet-api.jar` 未正确添加到类路径中。 - 部署时缺少 Servlet 容器支持。 解决方法:确保 `servlet-api.jar` 存在于类路径中,并且项目部署到支持 Servlet 的容器(如 Tomcat)。 ##### (2)**数据库连接失败** 原因可能是: - `mysql-connector-java-5.1.12-bin.jar` 未正确添加到类路径中。 - 数据库 URL、用户名或密码错误。 解决方法:检查数据库配置,并确保驱动程序已正确添加到项目中。 --- #### 4. **示例代码** 以下是一个简单的 JDBC 数据库连接示例,展示如何使用 `.classpath` 中的 `mysql-connector-java-5.1.12-bin.jar`: ```java import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.Statement; public class DatabaseTest { public static void main(String[] args) { String url = "jdbc:mysql://localhost:3306/testdb"; String user = "root"; String password = "password"; try (Connection conn = DriverManager.getConnection(url, user, password); Statement stmt = conn.createStatement(); ResultSet rs = stmt.executeQuery("SELECT * FROM users")) { while (rs.next()) { System.out.println("User ID: " + rs.getInt("id") + ", Name: " + rs.getString("name")); } } catch (Exception e) { e.printStackTrace(); } } } ``` --- ###
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值