Springboot 启动时不报错一直卡住,{dataSource-1} inited

Springboot 启动时不报错一直卡住,{dataSource-1} inited

问题描述

在启动boot项目时候,一直卡住,{dataSource-1} inited,也不报错,控制台输出停止在这一行

2020-09-09 11:13:07.612  INFO 13880 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'requestContextFilter' to: [/*]
2020-09-09 11:13:07.612  INFO 13880 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'corsFilter' to: [/*]
2020-09-09 11:13:07.796  INFO 13880 --- [  restartedMain] c.a.d.s.b.a.DruidDataSourceAutoConfigure : Init DruidDataSource
2020-09-09 11:13:07.900  INFO 13880 --- [  restartedMain] com.alibaba.druid.pool.DruidDataSource   : {
     dataSource-1} inited

然后等的时间久一点就会往下稍微一走,如此

2020-09-09 11:13:07.796  INFO 13880 --- [  restartedMain] c.a.d.s.b.a.DruidDataSourceAutoConfigure : Init DruidDataSource
2020-09-09 11:13:07.900  INFO 13880 --- [  restartedMain] com.alibaba.druid.pool.DruidDataSource   : {
     dataSource-1} inited
 _ _   |_  _ _|_. ___ _ |    _ 
| | |\/|_)(_| | |_\  |_)||_|_\ 
     /               |         
                        3.3.2 
2020-09-09 11:15:32.966  INFO 13880 --- [  restartedMain] s.c.a.AnnotationConfigApplicationContext : Refreshing FeignContext-service-redis: startup date [Wed Sep 09 11:15:32 CST 2020]; parent: org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4830b639
2020-09-09 11:15:40.509  INFO 13880 --- [  restartedMain] f.a.AutowiredAnnotationBeanPostProcessor : JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
2020-09-09 11:18:02.579  INFO 13880 --- [  restartedMain] s.c.a.AnnotationConfigApplicationContext : Refreshing FeignContext-service-staff: startup date [Wed Sep 09 11:18:02 CST 2020]; parent: org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4830b639

问题分析

boot在启动时候,回去做一些自动加载和包扫描,这里卡在了mybatis这里,我猜测实在扫描的时候出现了点问题,但是为啥不报错呢,思考了一下,这个时候程序也是在跑的,就想着可能是在加载的时候断点了????哦,看来是断点了!

问题解决

断点的原因!既然如此肯定是有断点了找一下

在这里插入图片描述

Springboot 启动时不报错一直卡住,{dataSource-1} inited_第1张图片

看来是不小心的时候点上去了,哎 还是要谨慎~

以上!

你可能感兴趣的:(SpringBoot,java,spring,boot)