作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的pom.xml
仅包含一个对SLF4J的引用:
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>1.5.10</version>
</dependency>
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.
.classpath
? (我想我尝试过此方法,但没有帮助)最佳答案
首先,为了添加SLF4J,应将这些依赖项的 ONE 和 ONE 放在pom.xml中。这取决于您选择使用哪种实现。您在pom.xml中添加的每个依赖项都会自动添加到类路径中。只要您使用的是Eclipse,就无需修改系统的%CLASSPATH%?
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version></version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version></version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version></version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version></version>
<scope>compile</scope>
</dependency>
关于slf4j - 无法加载类 “org.slf4j.impl.StaticLoggerBinder”-哪个类路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13828719/
我是一名优秀的程序员,十分优秀!