系统bug修改

This commit is contained in:
haozq 2025-06-11 10:06:18 +08:00
parent ae1d3efa73
commit 722bc3c815
9 changed files with 2562 additions and 9 deletions

View File

@ -347,4 +347,11 @@ public interface ProjectMapper {
* @return * @return
*/ */
List<String> getProRequest(Project entity); List<String> getProRequest(Project entity);
/**
* 查询承包商是否存在
* @param project
* @return
*/
int getConsProjectByKey(Project project);
} }

View File

@ -316,4 +316,6 @@ public interface SecurityCheckMapper {
* @return 撤回结果 * @return 撤回结果
*/ */
int withdrawalOfExtension(String id); int withdrawalOfExtension(String id);
int updateHiddenDangerRectification2(NewHiddenDangerDto dto);
} }

View File

@ -535,16 +535,23 @@ public class ProjectServiceImpl implements ProjectService {
} }
project.setSupUuid(projectMapper.getSupUuid(project.getSupervisorUnitUserId())); project.setSupUuid(projectMapper.getSupUuid(project.getSupervisorUnitUserId()));
//插入承包商-工程关联信息(先删后增---临时先放开 后期可能会删除) //插入承包商-工程关联信息(先删后增---临时先放开 后期可能会删除)
projectMapper.delConsProject(project); // projectMapper.delConsProject(project);
projectMapper.delMaterialProject(project); projectMapper.delMaterialProject(project);
projectMapper.delConsPersonToPcp(project); // projectMapper.delConsPersonToPcp(project);
projectMapper.delConsPersonToLk(project); // projectMapper.delConsPersonToLk(project);
for (int i = 0; i < project.getConsArr().size(); i++) { for (int i = 0; i < project.getConsArr().size(); i++) {
project.setConsId(projectMapper.getConsUuid(project.getConsArr().get(i).getValue())); project.setConsId(projectMapper.getConsUuid(project.getConsArr().get(i).getValue()));
project.setRelateUuid(StringUtils.getUuid()); project.setRelateUuid(StringUtils.getUuid());
result = projectMapper.addConsProject(project); int nums=projectMapper.getConsProjectByKey(project);
if (result <= 0) { //不存在则添加
throw new RuntimeException("Failed to add cons project"); if(nums==0){
result = projectMapper.addConsProject(project);
if (result <= 0) {
throw new RuntimeException("新增失败");
}
// TODO 获取承包商信息 --- 新增承包商信息到承包商人员表
// addConsPerson(project);
} }
for (int j = 0; j < project.getConsArr().get(i).getCheckList().size(); j++) { for (int j = 0; j < project.getConsArr().get(i).getCheckList().size(); j++) {
//插入材料-工程关联信息 //插入材料-工程关联信息
@ -556,8 +563,12 @@ public class ProjectServiceImpl implements ProjectService {
throw new RuntimeException("Failed to add material project"); throw new RuntimeException("Failed to add material project");
} }
} }
// TODO 获取承包商信息 --- 新增承包商信息到承包商人员表
addConsPerson(project); if(nums==0){
addConsPerson(project);
}
} }
} catch (Exception e) { } catch (Exception e) {
result = 0; result = 0;

View File

@ -648,7 +648,7 @@ public class SecurityCheckServiceImpl implements SecurityCheckService {
int result = 0; int result = 0;
try { try {
dto.setIsCheck("0"); dto.setIsCheck("0");
result = mapper.updateHiddenDangerRectification(dto); result = mapper.updateHiddenDangerRectification2(dto);
result = mapper.updateSuggestionsForRectification(dto); result = mapper.updateSuggestionsForRectification(dto);
SecurityCheckDto checkDto = new SecurityCheckDto(); SecurityCheckDto checkDto = new SecurityCheckDto();
checkDto.setId(dto.getId()); checkDto.setId(dto.getId());

View File

@ -74,6 +74,13 @@
feedback_time = #{rectificationFeedbackTime} feedback_time = #{rectificationFeedbackTime}
WHERE pitfall_id = #{id} WHERE pitfall_id = #{id}
</update> </update>
<update id="updateHiddenDangerRectification2">
UPDATE yh_pitfall_info
SET is_check = #{isCheck},
check_state = '4',
feedback_time = #{rectificationFeedbackTime}
WHERE pitfall_id = #{id}
</update>
<update id="updateHiddenDangerRectifications"> <update id="updateHiddenDangerRectifications">
<if test="isProcess == 1 or isProcess == '1'"> <if test="isProcess == 1 or isProcess == '1'">
UPDATE yh_pitfall_info UPDATE yh_pitfall_info

View File

@ -56,6 +56,13 @@
insert into lk_pro_cont(pro_id, cont_uuid, uuid,sup_uuid) insert into lk_pro_cont(pro_id, cont_uuid, uuid,sup_uuid)
values (#{proId}, #{consId}, #{relateUuid},#{supUuid}) values (#{proId}, #{consId}, #{relateUuid},#{supUuid})
</insert> </insert>
<select id="getConsProjectByKey" resultType="java.lang.Integer">
select count(1)
from lk_pro_cont
where pro_id=#{proId} and cont_uuid=#{consId}
</select>
<insert id="addMaterialProject"> <insert id="addMaterialProject">
insert into lk_pro_cont_material(pro_id, material_id, cont_id) insert into lk_pro_cont_material(pro_id, material_id, cont_id)
values (#{proId}, #{materialId}, #{consId}) values (#{proId}, #{materialId}, #{consId})
@ -438,4 +445,5 @@
left join pt_cont_info pci on pci.cont_id=lpcm.cont_id left join pt_cont_info pci on pci.cont_id=lpcm.cont_id
where lpcm.pro_id=#{proId} and pci.uuid=#{supId} where lpcm.pro_id=#{proId} and pci.uuid=#{supId}
</select> </select>
</mapper> </mapper>

View File

@ -0,0 +1,42 @@
09:37:44.908 [lettuce-nioEventLoop-4-2] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.io.IOException: 远程主机强迫关闭了一个现有的连接。
java.io.IOException: 远程主机强迫关闭了一个现有的连接。
at sun.nio.ch.SocketDispatcher.read0(Native Method)
at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
at sun.nio.ch.IOUtil.read(IOUtil.java:192)
at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:378)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:254)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.run(Thread.java:750)
09:37:44.944 [lettuce-nioEventLoop-4-1] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.io.IOException: 远程主机强迫关闭了一个现有的连接。
java.io.IOException: 远程主机强迫关闭了一个现有的连接。
at sun.nio.ch.SocketDispatcher.read0(Native Method)
at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
at sun.nio.ch.IOUtil.read(IOUtil.java:192)
at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:378)
at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:254)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357)
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788)
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724)
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650)
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.run(Thread.java:750)
09:37:45.080 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.0.14:2005
09:37:45.080 [lettuce-eventExecutorLoop-1-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /192.168.0.14:2005
09:37:45.111 [lettuce-nioEventLoop-4-3] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.0.14:2005
09:37:45.111 [lettuce-nioEventLoop-4-4] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 192.168.0.14:2005

View File

@ -0,0 +1,283 @@
09:34:15.794 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
09:34:15.852 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:34:16.282 [main] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor - [postProcessBeanFactory,48] - Post-processing PropertySource instances
09:34:16.358 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
09:34:16.360 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrap [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
09:34:16.360 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
09:34:16.360 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
09:34:16.361 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
09:34:16.361 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource cachedrandom [org.springframework.cloud.util.random.CachedRandomPropertySource] to EncryptablePropertySourceWrapper
09:34:16.361 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource springCloudClientHostInfo [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
09:34:16.361 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource Config resource 'class path resource [bootstrap.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
09:34:16.415 [main] INFO c.u.j.f.DefaultLazyPropertyFilter - [lambda$null$2,31] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
09:34:16.428 [main] INFO c.u.j.r.DefaultLazyPropertyResolver - [lambda$null$2,35] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
09:34:16.430 [main] INFO c.u.j.d.DefaultLazyPropertyDetector - [lambda$null$2,35] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
09:34:16.486 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:34:16.486 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:34:19.377 [main] INFO c.b.p.BonusProjectApplication - [logStartupProfileInfo,638] - The following 1 profile is active: "dev"
09:34:22.997 [main] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor - [postProcessBeanFactory,48] - Post-processing PropertySource instances
09:34:23.016 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrapProperties-bonus-project-dev.yml,DEFAULT_GROUP [org.springframework.cloud.bootstrap.config.BootstrapPropertySource] to EncryptableEnumerablePropertySourceWrapper
09:34:23.017 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrapProperties-bonus-project.yml,DEFAULT_GROUP [org.springframework.cloud.bootstrap.config.BootstrapPropertySource] to EncryptableEnumerablePropertySourceWrapper
09:34:23.017 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrapProperties-bonus-project,DEFAULT_GROUP [org.springframework.cloud.bootstrap.config.BootstrapPropertySource] to EncryptableEnumerablePropertySourceWrapper
09:34:23.017 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrapProperties-application-dev.yml,DEFAULT_GROUP [org.springframework.cloud.bootstrap.config.BootstrapPropertySource] to EncryptableEnumerablePropertySourceWrapper
09:34:23.017 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
09:34:23.018 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
09:34:23.018 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
09:34:23.018 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
09:34:23.018 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
09:34:23.018 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
09:34:23.019 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource cachedrandom [org.springframework.cloud.util.random.CachedRandomPropertySource] to EncryptablePropertySourceWrapper
09:34:23.019 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource springCloudClientHostInfo [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
09:34:23.019 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource springCloudDefaultProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
09:34:23.207 [main] INFO c.u.j.f.DefaultLazyPropertyFilter - [lambda$null$2,31] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
09:34:23.922 [main] INFO c.u.j.r.DefaultLazyPropertyResolver - [lambda$null$2,35] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
09:34:23.923 [main] INFO c.u.j.d.DefaultLazyPropertyDetector - [lambda$null$2,35] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
09:34:24.893 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-28085"]
09:34:24.899 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:34:24.899 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.83]
09:34:25.487 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:34:28.147 [main] INFO c.a.d.p.DruidDataSource - [init,1009] - {dataSource-1,master} inited
09:34:28.149 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,160] - dynamic-datasource - add a datasource named [master] success
09:34:28.149 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,243] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:34:33.150 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:34:36.436 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-28085"]
09:34:36.481 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:34:36.481 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:34:36.754 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP bonus-project 192.168.0.38:28085 register finished
09:34:37.283 [main] INFO c.b.p.BonusProjectApplication - [logStarted,61] - Started BonusProjectApplication in 22.506 seconds (JVM running for 25.641)
09:34:37.320 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=bonus-project-dev.yml, group=DEFAULT_GROUP
09:34:37.321 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=bonus-project.yml, group=DEFAULT_GROUP
09:34:37.322 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=bonus-project, group=DEFAULT_GROUP
09:34:37.987 [RMI TCP Connection(8)-192.168.0.38] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:36:30.884 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
09:36:30.892 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
09:36:31.029 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,217] - dynamic-datasource start closing ....
09:36:31.031 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2174] - {dataSource-1} closing ...
09:36:31.038 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2247] - {dataSource-1} closed
09:36:31.038 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
09:36:31.038 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,221] - dynamic-datasource all closed success,bye
09:36:40.896 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
09:36:40.945 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:36:41.316 [main] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor - [postProcessBeanFactory,48] - Post-processing PropertySource instances
09:36:41.378 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
09:36:41.379 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrap [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
09:36:41.379 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
09:36:41.380 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
09:36:41.381 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
09:36:41.381 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource cachedrandom [org.springframework.cloud.util.random.CachedRandomPropertySource] to EncryptablePropertySourceWrapper
09:36:41.381 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource springCloudClientHostInfo [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
09:36:41.381 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource Config resource 'class path resource [bootstrap.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
09:36:41.425 [main] INFO c.u.j.f.DefaultLazyPropertyFilter - [lambda$null$2,31] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
09:36:41.436 [main] INFO c.u.j.r.DefaultLazyPropertyResolver - [lambda$null$2,35] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
09:36:41.437 [main] INFO c.u.j.d.DefaultLazyPropertyDetector - [lambda$null$2,35] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
09:36:41.483 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:36:41.484 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:36:44.463 [main] INFO c.b.p.BonusProjectApplication - [logStartupProfileInfo,638] - The following 1 profile is active: "dev"
09:36:46.579 [main] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor - [postProcessBeanFactory,48] - Post-processing PropertySource instances
09:36:46.590 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrapProperties-bonus-project-dev.yml,DEFAULT_GROUP [org.springframework.cloud.bootstrap.config.BootstrapPropertySource] to EncryptableEnumerablePropertySourceWrapper
09:36:46.590 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrapProperties-bonus-project.yml,DEFAULT_GROUP [org.springframework.cloud.bootstrap.config.BootstrapPropertySource] to EncryptableEnumerablePropertySourceWrapper
09:36:46.590 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrapProperties-bonus-project,DEFAULT_GROUP [org.springframework.cloud.bootstrap.config.BootstrapPropertySource] to EncryptableEnumerablePropertySourceWrapper
09:36:46.590 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrapProperties-application-dev.yml,DEFAULT_GROUP [org.springframework.cloud.bootstrap.config.BootstrapPropertySource] to EncryptableEnumerablePropertySourceWrapper
09:36:46.590 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
09:36:46.590 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
09:36:46.591 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
09:36:46.591 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
09:36:46.591 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
09:36:46.591 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
09:36:46.591 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource cachedrandom [org.springframework.cloud.util.random.CachedRandomPropertySource] to EncryptablePropertySourceWrapper
09:36:46.591 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource springCloudClientHostInfo [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
09:36:46.591 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource springCloudDefaultProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
09:36:46.689 [main] INFO c.u.j.f.DefaultLazyPropertyFilter - [lambda$null$2,31] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
09:36:47.082 [main] INFO c.u.j.r.DefaultLazyPropertyResolver - [lambda$null$2,35] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
09:36:47.083 [main] INFO c.u.j.d.DefaultLazyPropertyDetector - [lambda$null$2,35] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
09:36:47.662 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-28085"]
09:36:47.666 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:36:47.666 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.83]
09:36:48.038 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:36:49.733 [main] INFO c.a.d.p.DruidDataSource - [init,1009] - {dataSource-1,master} inited
09:36:49.735 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,160] - dynamic-datasource - add a datasource named [master] success
09:36:49.735 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,243] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:36:52.736 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:36:55.815 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-28085"]
09:36:55.856 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:36:55.856 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:36:56.131 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP bonus-project 192.168.0.38:28085 register finished
09:36:56.585 [main] INFO c.b.p.BonusProjectApplication - [logStarted,61] - Started BonusProjectApplication in 16.487 seconds (JVM running for 18.485)
09:36:56.619 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=bonus-project-dev.yml, group=DEFAULT_GROUP
09:36:56.621 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=bonus-project.yml, group=DEFAULT_GROUP
09:36:56.621 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=bonus-project, group=DEFAULT_GROUP
09:36:57.515 [RMI TCP Connection(5)-192.168.0.38] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:39:18.223 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
09:39:18.229 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
09:39:18.363 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,217] - dynamic-datasource start closing ....
09:39:18.366 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2174] - {dataSource-1} closing ...
09:39:18.372 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2247] - {dataSource-1} closed
09:39:18.372 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
09:39:18.372 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,221] - dynamic-datasource all closed success,bye
09:39:25.929 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
09:39:25.978 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:39:26.311 [main] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor - [postProcessBeanFactory,48] - Post-processing PropertySource instances
09:39:26.369 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
09:39:26.370 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrap [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
09:39:26.371 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
09:39:26.371 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
09:39:26.371 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
09:39:26.371 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource cachedrandom [org.springframework.cloud.util.random.CachedRandomPropertySource] to EncryptablePropertySourceWrapper
09:39:26.371 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource springCloudClientHostInfo [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
09:39:26.371 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource Config resource 'class path resource [bootstrap.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
09:39:26.413 [main] INFO c.u.j.f.DefaultLazyPropertyFilter - [lambda$null$2,31] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
09:39:26.426 [main] INFO c.u.j.r.DefaultLazyPropertyResolver - [lambda$null$2,35] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
09:39:26.427 [main] INFO c.u.j.d.DefaultLazyPropertyDetector - [lambda$null$2,35] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
09:39:26.467 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:39:26.467 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:39:28.986 [main] INFO c.b.p.BonusProjectApplication - [logStartupProfileInfo,638] - The following 1 profile is active: "dev"
09:39:30.703 [main] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor - [postProcessBeanFactory,48] - Post-processing PropertySource instances
09:39:30.709 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrapProperties-bonus-project-dev.yml,DEFAULT_GROUP [org.springframework.cloud.bootstrap.config.BootstrapPropertySource] to EncryptableEnumerablePropertySourceWrapper
09:39:30.709 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrapProperties-bonus-project.yml,DEFAULT_GROUP [org.springframework.cloud.bootstrap.config.BootstrapPropertySource] to EncryptableEnumerablePropertySourceWrapper
09:39:30.709 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrapProperties-bonus-project,DEFAULT_GROUP [org.springframework.cloud.bootstrap.config.BootstrapPropertySource] to EncryptableEnumerablePropertySourceWrapper
09:39:30.711 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrapProperties-application-dev.yml,DEFAULT_GROUP [org.springframework.cloud.bootstrap.config.BootstrapPropertySource] to EncryptableEnumerablePropertySourceWrapper
09:39:30.711 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
09:39:30.711 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
09:39:30.711 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
09:39:30.711 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
09:39:30.711 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
09:39:30.711 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
09:39:30.711 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource cachedrandom [org.springframework.cloud.util.random.CachedRandomPropertySource] to EncryptablePropertySourceWrapper
09:39:30.711 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource springCloudClientHostInfo [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
09:39:30.711 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource springCloudDefaultProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
09:39:30.790 [main] INFO c.u.j.f.DefaultLazyPropertyFilter - [lambda$null$2,31] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
09:39:31.133 [main] INFO c.u.j.r.DefaultLazyPropertyResolver - [lambda$null$2,35] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
09:39:31.133 [main] INFO c.u.j.d.DefaultLazyPropertyDetector - [lambda$null$2,35] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
09:39:31.656 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-28085"]
09:39:31.659 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:39:31.659 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.83]
09:39:32.020 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:39:33.604 [main] INFO c.a.d.p.DruidDataSource - [init,1009] - {dataSource-1,master} inited
09:39:33.606 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,160] - dynamic-datasource - add a datasource named [master] success
09:39:33.606 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,243] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:39:36.421 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:39:39.408 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-28085"]
09:39:39.451 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:39:39.451 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:39:39.709 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP bonus-project 192.168.0.38:28085 register finished
09:39:40.144 [main] INFO c.b.p.BonusProjectApplication - [logStarted,61] - Started BonusProjectApplication in 14.989 seconds (JVM running for 16.865)
09:39:40.176 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=bonus-project-dev.yml, group=DEFAULT_GROUP
09:39:40.177 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=bonus-project.yml, group=DEFAULT_GROUP
09:39:40.177 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=bonus-project, group=DEFAULT_GROUP
09:39:40.591 [RMI TCP Connection(3)-192.168.0.38] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:40:57.775 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
09:40:57.781 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
09:40:57.942 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,217] - dynamic-datasource start closing ....
09:40:57.945 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2174] - {dataSource-1} closing ...
09:40:57.952 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2247] - {dataSource-1} closed
09:40:57.952 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
09:40:57.952 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,221] - dynamic-datasource all closed success,bye
09:41:08.266 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
09:41:08.311 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:41:08.645 [main] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor - [postProcessBeanFactory,48] - Post-processing PropertySource instances
09:41:08.715 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
09:41:08.716 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrap [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
09:41:08.716 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
09:41:08.716 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
09:41:08.717 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
09:41:08.717 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource cachedrandom [org.springframework.cloud.util.random.CachedRandomPropertySource] to EncryptablePropertySourceWrapper
09:41:08.717 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource springCloudClientHostInfo [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
09:41:08.717 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource Config resource 'class path resource [bootstrap.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
09:41:08.767 [main] INFO c.u.j.f.DefaultLazyPropertyFilter - [lambda$null$2,31] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
09:41:08.778 [main] INFO c.u.j.r.DefaultLazyPropertyResolver - [lambda$null$2,35] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
09:41:08.780 [main] INFO c.u.j.d.DefaultLazyPropertyDetector - [lambda$null$2,35] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
09:41:08.824 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:41:08.824 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:41:11.270 [main] INFO c.b.p.BonusProjectApplication - [logStartupProfileInfo,638] - The following 1 profile is active: "dev"
09:41:13.014 [main] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor - [postProcessBeanFactory,48] - Post-processing PropertySource instances
09:41:13.022 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrapProperties-bonus-project-dev.yml,DEFAULT_GROUP [org.springframework.cloud.bootstrap.config.BootstrapPropertySource] to EncryptableEnumerablePropertySourceWrapper
09:41:13.022 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrapProperties-bonus-project.yml,DEFAULT_GROUP [org.springframework.cloud.bootstrap.config.BootstrapPropertySource] to EncryptableEnumerablePropertySourceWrapper
09:41:13.022 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrapProperties-bonus-project,DEFAULT_GROUP [org.springframework.cloud.bootstrap.config.BootstrapPropertySource] to EncryptableEnumerablePropertySourceWrapper
09:41:13.022 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrapProperties-application-dev.yml,DEFAULT_GROUP [org.springframework.cloud.bootstrap.config.BootstrapPropertySource] to EncryptableEnumerablePropertySourceWrapper
09:41:13.023 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
09:41:13.023 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
09:41:13.023 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
09:41:13.023 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
09:41:13.023 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
09:41:13.023 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
09:41:13.023 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource cachedrandom [org.springframework.cloud.util.random.CachedRandomPropertySource] to EncryptablePropertySourceWrapper
09:41:13.023 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource springCloudClientHostInfo [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
09:41:13.023 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource springCloudDefaultProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
09:41:13.104 [main] INFO c.u.j.f.DefaultLazyPropertyFilter - [lambda$null$2,31] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
09:41:13.455 [main] INFO c.u.j.r.DefaultLazyPropertyResolver - [lambda$null$2,35] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
09:41:13.455 [main] INFO c.u.j.d.DefaultLazyPropertyDetector - [lambda$null$2,35] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
09:41:13.982 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-28085"]
09:41:13.985 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:41:13.986 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.83]
09:41:14.344 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:41:16.041 [main] INFO c.a.d.p.DruidDataSource - [init,1009] - {dataSource-1,master} inited
09:41:16.043 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,160] - dynamic-datasource - add a datasource named [master] success
09:41:16.043 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,243] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:41:18.972 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:41:22.267 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-28085"]
09:41:22.308 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:41:22.310 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:41:22.560 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP bonus-project 192.168.0.38:28085 register finished
09:41:23.055 [main] INFO c.b.p.BonusProjectApplication - [logStarted,61] - Started BonusProjectApplication in 15.566 seconds (JVM running for 17.355)
09:41:23.087 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=bonus-project-dev.yml, group=DEFAULT_GROUP
09:41:23.087 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=bonus-project.yml, group=DEFAULT_GROUP
09:41:23.089 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=bonus-project, group=DEFAULT_GROUP
09:41:23.959 [RMI TCP Connection(4)-192.168.0.38] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
09:41:59.909 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
09:41:59.914 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
09:42:00.052 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,217] - dynamic-datasource start closing ....
09:42:00.054 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2174] - {dataSource-1} closing ...
09:42:00.060 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2247] - {dataSource-1} closed
09:42:00.060 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
09:42:00.060 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,221] - dynamic-datasource all closed success,bye
09:42:07.537 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
09:42:07.580 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate Validator 6.2.5.Final
09:42:07.911 [main] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor - [postProcessBeanFactory,48] - Post-processing PropertySource instances
09:42:07.969 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
09:42:07.970 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrap [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
09:42:07.970 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
09:42:07.971 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
09:42:07.971 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
09:42:07.971 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource cachedrandom [org.springframework.cloud.util.random.CachedRandomPropertySource] to EncryptablePropertySourceWrapper
09:42:07.971 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource springCloudClientHostInfo [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
09:42:07.972 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource Config resource 'class path resource [bootstrap.yml]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
09:42:08.024 [main] INFO c.u.j.f.DefaultLazyPropertyFilter - [lambda$null$2,31] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
09:42:08.037 [main] INFO c.u.j.r.DefaultLazyPropertyResolver - [lambda$null$2,35] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
09:42:08.039 [main] INFO c.u.j.d.DefaultLazyPropertyDetector - [lambda$null$2,35] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
09:42:08.080 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:42:08.080 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:42:10.478 [main] INFO c.b.p.BonusProjectApplication - [logStartupProfileInfo,638] - The following 1 profile is active: "dev"
09:42:12.311 [main] INFO c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor - [postProcessBeanFactory,48] - Post-processing PropertySource instances
09:42:12.320 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrapProperties-bonus-project-dev.yml,DEFAULT_GROUP [org.springframework.cloud.bootstrap.config.BootstrapPropertySource] to EncryptableEnumerablePropertySourceWrapper
09:42:12.320 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrapProperties-bonus-project.yml,DEFAULT_GROUP [org.springframework.cloud.bootstrap.config.BootstrapPropertySource] to EncryptableEnumerablePropertySourceWrapper
09:42:12.320 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrapProperties-bonus-project,DEFAULT_GROUP [org.springframework.cloud.bootstrap.config.BootstrapPropertySource] to EncryptableEnumerablePropertySourceWrapper
09:42:12.320 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource bootstrapProperties-application-dev.yml,DEFAULT_GROUP [org.springframework.cloud.bootstrap.config.BootstrapPropertySource] to EncryptableEnumerablePropertySourceWrapper
09:42:12.320 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
09:42:12.320 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
09:42:12.320 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
09:42:12.320 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
09:42:12.320 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
09:42:12.320 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
09:42:12.320 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource cachedrandom [org.springframework.cloud.util.random.CachedRandomPropertySource] to EncryptablePropertySourceWrapper
09:42:12.322 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource springCloudClientHostInfo [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
09:42:12.322 [main] INFO c.u.j.EncryptablePropertySourceConverter - [makeEncryptable,44] - Converting PropertySource springCloudDefaultProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
09:42:12.404 [main] INFO c.u.j.f.DefaultLazyPropertyFilter - [lambda$null$2,31] - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
09:42:12.760 [main] INFO c.u.j.r.DefaultLazyPropertyResolver - [lambda$null$2,35] - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
09:42:12.762 [main] INFO c.u.j.d.DefaultLazyPropertyDetector - [lambda$null$2,35] - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
09:42:13.520 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-28085"]
09:42:13.524 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
09:42:13.525 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.83]
09:42:14.150 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
09:42:16.596 [main] INFO c.a.d.p.DruidDataSource - [init,1009] - {dataSource-1,master} inited
09:42:16.598 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,160] - dynamic-datasource - add a datasource named [master] success
09:42:16.599 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,243] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
09:42:21.062 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
09:42:25.914 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-28085"]
09:42:25.971 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
09:42:25.971 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
09:42:26.236 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP bonus-project 192.168.0.38:28085 register finished
09:42:27.069 [main] INFO c.b.p.BonusProjectApplication - [logStarted,61] - Started BonusProjectApplication in 20.314 seconds (JVM running for 22.183)
09:42:27.116 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=bonus-project-dev.yml, group=DEFAULT_GROUP
09:42:27.117 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=bonus-project.yml, group=DEFAULT_GROUP
09:42:27.120 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=bonus-project, group=DEFAULT_GROUP
09:42:28.502 [RMI TCP Connection(4)-192.168.0.38] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'

2193
sellPlan.doc Normal file

File diff suppressed because it is too large Load Diff