Springboot啟動一直卡在{dataSource-1} inited 如果你clean也沒有效果請點看

alenCook發表於2020-06-28

如果斷點沒有 clean也沒用 專案重新編譯也沒效果,ok說明已經翻了很多資料了,  如果還沒解決,執行到好好的專案怎麼突然就卡住不動了呢. 其實這種情況也不是idea的問題, 可以考慮重新開啟一個專案啟動,正常啟動的話,證明idea工具是沒有出問題的

本文如果有效還請回來點個贊,謝謝

首先 上控制檯資訊

SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
=================================================================================================

         大資料平臺-balabalabala

=================================================================================================
六月 28, 2020 11:37:36 上午 org.apache.catalina.core.StandardService startInternal
資訊: Starting service [Tomcat]
六月 28, 2020 11:37:36 上午 org.apache.catalina.core.StandardEngine startInternal
資訊: Starting Servlet engine: [Apache Tomcat/9.0.31]
六月 28, 2020 11:37:36 上午 org.apache.catalina.core.ApplicationContext log
資訊: Initializing Spring embedded WebApplicationContext
2020-06-28 11:37:36 JRebel: Monitoring Log4j configuration in 'file:/C:/Users/15011/eclipse-workspace/bigdata_share_platform/target/classes/log4j.properties'.
{dataSource-1} inited

日誌列印已告知 SLF4J:Failed to load class "xxxxxx"  也就是第一行

問題很明顯 專案中沒有slf4j的jar

<dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-simple</artifactId>
    <version>1.7.25</version>
    <scope>compile</scope>
</dependency>

放上去Ok 如果你的情況依然沒有解決,那麼不要搜{dataSource-1} inited ; 請看控制檯其他錯誤資訊,還沒有解決可以評論區留言

相關文章