Springboot 啟動時不報錯一直卡住,{dataSource-1} inited

草莓Sir發表於2020-09-09

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這裡,我猜測實在掃描的時候出現了點問題,但是為啥不報錯呢,思考了一下,這個時候程式也是在跑的,就想著可能是在載入的時候斷點了????哦,看來是斷點了!

問題解決

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

在這裡插入圖片描述

在這裡插入圖片描述

看來是不小心的時候點上去了,哎 還是要謹慎~

以上!

相關文章