Tag Archives: IDEA springboot Startup Error

[Solved] IDEA springboot Startup Error: SLF4J:Failed to load class “org.slf4j.impl.StaticLoggerBinder”

That’s the log, but pay attention to the first line    SLF4J: Failed to load class “org.slf4j.impl.StaticLoggerBinder”.

Solution:

Add dependent package

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

</dependency>