系統(tǒng)執(zhí)行報(bào)錯(cuò)
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.
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.
舉報(bào)
2018-06-19
應(yīng)該是缺少一個(gè)jar包導(dǎo)致?slf4j-log4j12
2018-12-17
2018-10-23
<!-- https://mvnrepository.com/artifact/org.quartz-scheduler/quartz -->
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
<version>2.2.3</version>
</dependency>
<dependency>
? <groupId>org.slf4j</groupId>
? <artifactId>slf4j-log4j12</artifactId>
? <version>1.7.10</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.quartz-scheduler/quartz-jobs -->
<dependency>
? ? <groupId>org.quartz-scheduler</groupId>
? ? <artifactId>quartz-jobs</artifactId>
? ? <version>2.3.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.geronimo.specs/geronimo-jta_1.1_spec -->
<dependency>
? ? <groupId>org.apache.geronimo.specs</groupId>
? ? <artifactId>geronimo-jta_1.1_spec</artifactId>
? ? <version>1.1.1</version>
</dependency>
2018-07-03