Re: 讨论一下 cache 应该放在 service 层还是 dao 层吧

本文讨论了缓存的具体实施策略,提出只在一个层面上提供缓存功能的原则,避免系统的复杂性和提高耦合性。同时,文章还探讨了如何实现自定义缓存方案,并保持与不同DAO技术方案的兼容性。

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

Cache 这个东西,看似简单,但是具体实施起来却是很麻烦,有许多方面的因素需要考虑,很多实施不好的 cache 会成为系统故障和维护噩梦的重要源头。 所以我的原则是,只在一个层面上提供 cache 功能,其它的层面都不提供,以避免其复杂性并且降低耦合性。 就像各位所讲到的那样,cache 包括很多层面,而且会有一些特殊情况,这些应改需要根据具体情况具体分析了。[color=blue]这里我主要想讨论一下我们大多数情况下用到的的 cache 方案。[/color][color=orange]页面 cache 也很重要,不过不再这里讨论了。[/color] Allen 说: [quote] 首先,你所说的cache应该指的就是对象的缓存,确切地说应该是持久化对象的缓存。那么这个“service 层的object cache”肯定得由你们自己来写了,我想这很难保证你们的cache使用效果会比底层下面“不是很完善的”hibernate 和 iBatis 提供的cache更好看。 [/quote] 这个说的非常对,实现自己的缓存方案比较麻烦一点,但并不是非常困难的事情,而且一个方案定下来之后可以不断地重用。 Allen 说: [quote] 再者,你们怎么保证“service 层的object cache”可以完好地与各不相同的“其它 dao 的技术方案”匹配上呢?而且又用什么机制保证“service 层的object cache”和数据库是同步的呢?直接连DB来获得更新了的碎片?或者专门写一些DAO层的接口,通过各自的实现来搞? [/quote] 我的想法是 DAO 只做 DAO 的工作,对开发应用的程序员提供的接口只有 service,不允许直接操作 DAO。这样应该就可以实现了。
解决报错[root@localhost docker]# docker logs -f tdm-jar LOGBACK: No context given for c.q.l.core.rolling.SizeAndTimeBasedRollingPolicy@667346055 _____ _____ _____ /\ \ /\ \ /\ \ /::\ \ /::\ \ /::\____\ \:::\ \ /::::\ \ /::::| | \:::\ \ /::::::\ \ /:::::| | \:::\ \ /:::/\:::\ \ /::::::| | \:::\ \ /:::/ \:::\ \ /:::/|::| | /::::\ \ /:::/ \:::\ \ /:::/ |::| | /::::::\ \ /:::/ / \:::\ \ /:::/ |::|___|______ /:::/\:::\ \ /:::/ / \:::\ ___\ /:::/ |::::::::\ \ /:::/ \:::\____\/:::/____/ \:::| /:::/ |:::::::::\____\ /:::/ \::/ /\:::\ \ /:::|____\::/ / ~~~~~/:::/ / /:::/ / \/____/ \:::\ \ /:::/ / \/____/ /:::/ / /:::/ / \:::\ \ /:::/ / /:::/ / /:::/ / \:::\ /:::/ / /:::/ / \::/ / \:::\ /:::/ / /:::/ / \/____/ \:::\/:::/ / /:::/ / \::::::/ / /:::/ / \::::/ / /:::/ / \::/____/ \::/ / ~~ \/____/ 2025-07-25 07:37:16,287 INFO [main] - cn.serverx.sx.ServerXApplication:55 - Starting ServerXApplication on 974d7161bb6c with PID 1 (/app/sx-admin-1.0-SNAPSHOT.jar started by root in /app) 2025-07-25 07:37:16,300 INFO [main] - cn.serverx.sx.ServerXApplication:655 - The following profiles are active: p 2025-07-25 07:37:26,626 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationDelegate:249 - Multiple Spring Data modules found, entering strict repository configuration mode! 2025-07-25 07:37:26,632 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationDelegate:127 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. 2025-07-25 07:37:27,700 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data JPA - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.core.dao.elasticsearch.EsLogDao. If you want this repository to be a JPA repository, consider annotating your entities with one of these annotations: javax.persistence.Entity, javax.persistence.MappedSuperclass (preferred), or consider extending one of the following types with your repository: org.springframework.data.jpa.repository.JpaRepository. 2025-07-25 07:37:28,073 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationDelegate:187 - Finished Spring Data repository scanning in 1405ms. Found 27 JPA repository interfaces. 2025-07-25 07:37:28,223 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationDelegate:249 - Multiple Spring Data modules found, entering strict repository configuration mode! 2025-07-25 07:37:28,227 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationDelegate:127 - Bootstrapping Spring Data Redis repositories in DEFAULT mode. 2025-07-25 07:37:28,307 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.base.dao.DictDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,322 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.base.dao.DictDataDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,323 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.activiti.dao.ActBusinessDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,324 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.activiti.dao.ActCategoryDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,327 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.activiti.dao.ActModelDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,328 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.activiti.dao.ActNodeDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,328 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.activiti.dao.ActProcessDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,329 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.activiti.dao.business.LeaveDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,330 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.social.dao.GithubDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,330 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.social.dao.QQDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,330 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.social.dao.WechatDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,358 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.social.dao.WeiboDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,360 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.core.dao.DepartmentDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,360 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.core.dao.DepartmentHeaderDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,361 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.core.dao.elasticsearch.EsLogDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,361 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.core.dao.LogDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,367 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.core.dao.MessageDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,367 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.core.dao.MessageSendDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,368 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.core.dao.PermissionDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,368 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.core.dao.RoleDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,369 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.core.dao.RoleDepartmentDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,378 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.core.dao.RolePermissionDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,378 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.core.dao.SettingDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,379 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.core.dao.UserDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,379 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.core.dao.UserRoleDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,380 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.file.dao.FileDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,392 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.quartz.dao.QuartzJobDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,397 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport:348 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface cn.serverx.sx.open.dao.ClientDao. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository. 2025-07-25 07:37:28,397 INFO [main] - org.springframework.data.repository.config.RepositoryConfigurationDelegate:187 - Finished Spring Data repository scanning in 149ms. Found 0 Redis repository interfaces. 2025-07-25 07:37:29,164 WARN [main] - org.mybatis.spring.mapper.ClassPathMapperScanner:44 - Skipping MapperFactoryBean with name 'permissionMapper' and 'cn.serverx.sx.core.dao.mapper.PermissionMapper' mapperInterface. Bean already defined with the same name! 2025-07-25 07:37:29,164 WARN [main] - org.mybatis.spring.mapper.ClassPathMapperScanner:44 - Skipping MapperFactoryBean with name 'userRoleMapper' and 'cn.serverx.sx.core.dao.mapper.UserRoleMapper' mapperInterface. Bean already defined with the same name! 2025-07-25 07:37:29,172 WARN [main] - org.mybatis.spring.mapper.ClassPathMapperScanner:44 - Skipping MapperFactoryBean with name 'actMapper' and 'cn.serverx.sx.activiti.dao.mapper.ActMapper' mapperInterface. Bean already defined with the same name! 2025-07-25 07:37:29,173 WARN [main] - org.mybatis.spring.mapper.ClassPathMapperScanner:44 - Skipping MapperFactoryBean with name 'historyIdentityMapper' and 'cn.serverx.sx.activiti.dao.mapper.HistoryIdentityMapper' mapperInterface. Bean already defined with the same name! 2025-07-25 07:37:29,173 WARN [main] - org.mybatis.spring.mapper.ClassPathMapperScanner:44 - Skipping MapperFactoryBean with name 'runIdentityMapper' and 'cn.serverx.sx.activiti.dao.mapper.RunIdentityMapper' mapperInterface. Bean already defined with the same name! 2025-07-25 07:37:30,140 INFO [main] - com.ulisesbocchio.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:48 - Post-processing PropertySource instances 2025-07-25 07:37:30,481 INFO [main] - com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:44 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy 2025-07-25 07:37:30,482 INFO [main] - com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:44 - Converting PropertySource commandLineArgs [org.springframework.core.env.SimpleCommandLinePropertySource] to EncryptableEnumerablePropertySourceWrapper 2025-07-25 07:37:30,482 INFO [main] - com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:44 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper 2025-07-25 07:37:30,483 INFO [main] - com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:44 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper 2025-07-25 07:37:30,483 INFO [main] - com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:44 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper 2025-07-25 07:37:30,483 INFO [main] - com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:44 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper 2025-07-25 07:37:30,483 INFO [main] - com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:44 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper 2025-07-25 07:37:30,484 INFO [main] - com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:44 - Converting PropertySource applicationConfig: [file:./application-p.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper 2025-07-25 07:37:30,484 INFO [main] - com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:44 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper 2025-07-25 07:37:32,773 INFO [main] - org.springframework.integration.config.DefaultConfiguringBeanFactoryPostProcessor:213 - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created. 2025-07-25 07:37:32,785 INFO [main] - org.springframework.integration.config.DefaultConfiguringBeanFactoryPostProcessor:300 - No bean named 'taskScheduler' has been explicitly defined. Therefore, a default ThreadPoolTaskScheduler will be created. 2025-07-25 07:37:32,807 INFO [main] - org.springframework.integration.config.DefaultConfiguringBeanFactoryPostProcessor:460 - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created. 2025-07-25 07:37:33,452 INFO [main] - com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter 2025-07-25 07:37:33,763 INFO [main] - org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker:330 - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 2025-07-25 07:37:34,550 INFO [main] - org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker:330 - Bean 'redisCacheConfig' of type [cn.serverx.sx.core.config.cache.RedisCacheConfig$$EnhancerBySpringCGLIB$$c82ebc37] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 2025-07-25 07:37:34,849 INFO [main] - org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker:330 - Bean 'org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration' of type [org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 2025-07-25 07:37:34,928 INFO [main] - org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker:330 - Bean 'objectPostProcessor' of type [org.springframework.security.config.annotation.configuration.AutowireBeanFactoryObjectPostProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 2025-07-25 07:37:34,944 INFO [main] - org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker:330 - Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@44e3760b' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 2025-07-25 07:37:34,948 INFO [main] - org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker:330 - Bean 'org.springframework.security.config.annotation.method.configuration.GlobalMethodSecurityConfiguration' of type [org.springframework.security.config.annotation.method.configuration.GlobalMethodSecurityConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 2025-07-25 07:37:34,993 INFO [main] - org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker:330 - Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 2025-07-25 07:37:35,059 INFO [main] - org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker:330 - Bean 'org.springframework.integration.config.IntegrationManagementConfiguration' of type [org.springframework.integration.config.IntegrationManagementConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 2025-07-25 07:37:35,140 INFO [main] - org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker:330 - Bean 'integrationChannelResolver' of type [org.springframework.integration.support.channel.BeanFactoryChannelResolver] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 2025-07-25 07:37:35,179 INFO [main] - org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker:330 - Bean 'integrationDisposableAutoCreatedBeans' of type [org.springframework.integration.config.annotation.Disposables] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 2025-07-25 07:37:36,005 INFO [main] - com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver 2025-07-25 07:37:36,029 INFO [main] - com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector 2025-07-25 07:37:37,980 INFO [main] - org.springframework.boot.web.embedded.tomcat.TomcatWebServer:92 - Tomcat initialized with port(s): 8862 (http) 2025-07-25 07:37:38,088 INFO [main] - org.apache.catalina.core.StandardService:173 - Starting service [Tomcat] 2025-07-25 07:37:38,089 INFO [main] - org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.29] 2025-07-25 07:37:38,484 INFO [main] - org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext 2025-07-25 07:37:38,485 INFO [main] - org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 21879 ms 2025-07-25 07:37:42,651 INFO [main] - com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure:56 - Init DruidDataSource 2025-07-25 07:37:45,200 INFO [main] - com.alibaba.druid.pool.DruidDataSource:1010 - {dataSource-1} inited 2025-07-25 07:37:47,770 INFO [main] - org.hibernate.jpa.internal.util.LogHelper:31 - HHH000204: Processing PersistenceUnitInfo [name: default] 2025-07-25 07:37:48,017 INFO [main] - org.hibernate.Version:46 - HHH000412: Hibernate Core {5.4.9.Final} 2025-07-25 07:37:48,022 INFO [main] - org.hibernate.cfg.Environment:184 - HHH000205: Loaded properties from resource hibernate.properties: {hibernate.bytecode.use_reflection_optimizer=false, hibernate.dialect.storage_engine=innodb} 2025-07-25 07:37:48,995 INFO [main] - org.hibernate.annotations.common.Version:49 - HCANN000001: Hibernate Commons Annotations {5.1.0.Final} 2025-07-25 07:37:49,477 INFO [main] - org.hibernate.dialect.Dialect:172 - HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect 2025-07-25 07:37:56,804 INFO [main] - org.hibernate.engine.transaction.jta.platform.internal.JtaPlatformInitiator:52 - HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] 2025-07-25 07:37:57,007 INFO [main] - org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean:416 - Initialized JPA EntityManagerFactory for persistence unit 'default' 2025-07-25 07:37:59,055 WARN [main] - cn.serverx.sx.core.config.security.permission.MyFilterSecurityInterceptor:159 - Could not validate configuration attributes as the SecurityMetadataSource did not return any attributes from getAllConfigAttributes() 2025-07-25 07:38:00,730 INFO [main] - org.springframework.boot.actuate.endpoint.web.ServletEndpointRegistrar:75 - Registered '/serverx/actuator/jolokia' to jolokia-actuator-endpoint _ _ |_ _ _|_. ___ _ | _ | | |\/|_)(_| | |_\ |_)||_|_\ / | 3.3.1 2025-07-25 07:38:12,093 INFO [main] - org.quartz.impl.StdSchedulerFactory:1220 - Using default implementation for ThreadExecutor 2025-07-25 07:38:12,235 INFO [main] - org.quartz.core.SchedulerSignalerImpl:61 - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl 2025-07-25 07:38:12,235 INFO [main] - org.quartz.core.QuartzScheduler:229 - Quartz Scheduler v.2.3.2 created. 2025-07-25 07:38:12,275 INFO [main] - org.springframework.scheduling.quartz.LocalDataSourceJobStore:672 - Using db table-based data access locking (synchronization). 2025-07-25 07:38:12,281 INFO [main] - org.springframework.scheduling.quartz.LocalDataSourceJobStore:145 - JobStoreCMT initialized. 2025-07-25 07:38:12,283 INFO [main] - org.quartz.core.QuartzScheduler:294 - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. NOT STARTED. Currently in standby mode. Number of jobs executed: 0 Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is not clustered. 2025-07-25 07:38:12,283 INFO [main] - org.quartz.impl.StdSchedulerFactory:1374 - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. 2025-07-25 07:38:12,284 INFO [main] - org.quartz.impl.StdSchedulerFactory:1378 - Quartz scheduler version: 2.3.2 2025-07-25 07:38:12,284 INFO [main] - org.quartz.core.QuartzScheduler:2293 - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@3ea84e01 Hibernate: select quartzjob0_.id as id1_41_, quartzjob0_.create_by as create_b2_41_, quartzjob0_.create_time as create_t3_41_, quartzjob0_.del_flag as del_flag4_41_, quartzjob0_.update_by as update_b5_41_, quartzjob0_.update_time as update_t6_41_, quartzjob0_.cron_expression as cron_exp7_41_, quartzjob0_.description as descript8_41_, quartzjob0_.job_class_name as job_clas9_41_, quartzjob0_.parameter as paramet10_41_, quartzjob0_.status as status11_41_ from t_quartz_job quartzjob0_ where quartzjob0_.job_class_name=? 2025-07-25 07:38:27,622 ERROR [main] - cn.serverx.sx.job.init.JobInitConfig:122 - org.quartz.impl.jdbcjobstore.LockException: Failure obtaining db row lock: Table 'tdm.qrtz_locks' doesn't exist [See nested exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'tdm.qrtz_locks' doesn't exist] 2025-07-25 07:38:28,007 WARN [main] - org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext:558 - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'jobInitConfig': Invocation of init method failed; nested exception is ServerXException(msg=创建定时任务失败) 2025-07-25 07:38:28,104 INFO [main] - org.springframework.scheduling.quartz.SchedulerFactoryBean:845 - Shutting down Quartz Scheduler 2025-07-25 07:38:28,106 INFO [main] - org.quartz.core.QuartzScheduler:666 - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. 2025-07-25 07:38:28,106 INFO [main] - org.quartz.core.QuartzScheduler:585 - Scheduler quartzScheduler_$_NON_CLUSTERED paused. 2025-07-25 07:38:28,118 INFO [main] - org.quartz.core.QuartzScheduler:740 - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. 2025-07-25 07:38:28,155 INFO [main] - org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean:598 - Closing JPA EntityManagerFactory for persistence unit 'default' 2025-07-25 07:38:28,200 INFO [main] - com.alibaba.druid.pool.DruidDataSource:2003 - {dataSource-1} closing ... 2025-07-25 07:38:28,549 INFO [main] - com.alibaba.druid.pool.DruidDataSource:2075 - {dataSource-1} closed 2025-07-25 07:38:28,886 INFO [main] - org.apache.catalina.core.StandardService:173 - Stopping service [Tomcat] 2025-07-25 07:38:29,338 INFO [main] - org.springframework.boot.autoconfigure.logging.ConditionEvaluationReportLoggingListener:136 - Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. 2025-07-25 07:38:29,385 ERROR [main] - org.springframework.boot.SpringApplication:826 - Application run failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'jobInitConfig': Invocation of init method failed; nested exception is ServerXException(msg=创建定时任务失败) at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:160) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:416) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1788) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:595) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:517) at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:323) at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:321) at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202) at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:879) at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:878) at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:550) at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:141) at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:747) at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397) at org.springframework.boot.SpringApplication.run(SpringApplication.java:315) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215) at cn.serverx.sx.ServerXApplication.main(ServerXApplication.java:87) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:49) at org.springframework.boot.loader.Launcher.launch(Launcher.java:108) at org.springframework.boot.loader.Launcher.launch(Launcher.java:58) at org.springframework.boot.loader.JarLauncher.main(JarLauncher.java:88) Caused by: cn.serverx.sx.core.common.exception.ServerXException: 创建定时任务失败 at cn.serverx.sx.job.init.JobInitConfig.add(JobInitConfig.java:123) at cn.serverx.sx.job.init.JobInitConfig.init(JobInitConfig.java:94) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) ... 26 common frames omitted
最新发布
07-26
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
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值