我正在为intelliJ IDEA开发一个插件,我正在使用一个外部库。当我跑步的时候,我有这个问题。
SLF4J:类路径包含多个SLF4J绑定。SLF4J:在[jar:file:/c:/users/molos/desktop/thesis-folder/thesis-project/build/idea-sandbox/plugins/thesis-project/lib/slf4j-log4j12-1.6.0.jar!/org/slf4j/impl/staticloggerbinder.class]中找到绑定;SLF4J:在
这是我的建筑。
plugins {
id 'java'
id 'maven-publish'
id 'org.jetbrains.intellij' version '0.4.10'
}
version '1.0-SNAPSHOT'
apply plugin: 'maven'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven {
url = 'https://repo.maven.apache.org/maven2'
}
dependencies {
// https://mvnrepository.com/artifact/com.github.mauricioaniche/ck
compile group: 'com.github.mauricioaniche', name: 'ck', version: '0.4.4'
// https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit
compile group: 'org.eclipse.jgit', name: 'org.eclipse.jgit', version: '2.2.0.201212191850-r'
// https://mvnrepository.com/artifact/org.apache.commons/commons-csv
compile group: 'org.apache.commons', name: 'commons-csv', version: '1.1'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version '2019.3.1'
}
我尝试了我找到的许多解决办法,但我都解决不了。
有人能帮帮我吗?
我在最近的一个应用程序中遇到了同样的问题,该应用程序的版本为Gradle6.7和spring boot 2.3.4.版。我最终排除了IntelliJ插件的功能,以及其他一些功能。
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.5.1'
id 'org.springframework.boot' version '2.3.4.RELEASE'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
}
...
configurations {
// the ideaIC module is adding the slf4j-log4j12 module and StaticLoggerBinder.class
implementation.exclude(group: 'com.jetbrains', module: 'ideaIC')
// the groovy plugin was adding groovy to the runtime
implementation.exclude(group: 'org.codehaus.groovy', module: 'groovy-all')
// spring-boot-logging brought in logback and log4j-to-slf4j which I don't want
// since I am using org.springframework.boot:spring-boot-starter-log4j2
compile.exclude(group: 'ch.qos.logback')
compile.exclude(group: 'org.apache.logging.log4j', module: 'log4j-to-slf4j')
}
这是一种蛮力,但它起作用了。可能Gradle文件中缺少一些设置,导致添加了这些不必要的模块。我当然不指望这些插件会给我的JAR添加这样的东西。
我得到以下错误。似乎有多个日志记录框架绑定到SLF4J。不知道该怎么解决。非常感谢任何帮助。
我在运行java代码时遇到以下运行时异常。有人能帮我解决绑定冲突吗。
我在netbeans中有一个纯Java项目,我得到的警告是: 当然,我搜索了警告,但所有的答案都与用maven或pom.xml文件删除重复绑定有关。但是我没有pom.xml文件,也没有使用Maven。 那么如何排除绑定呢?
我不断得到错误:
我在其他问题中看到,通常此警告的解决方案是从导致此冲突的依赖项中排除slf4j,但我无法在我的项目中发现问题。 我运行命令,输出如下:
在将apache.mahout添加到pom.xml之后,我在运行spring项目时开始出现这个警告,我想知道如何抑制这个警告。 这是我的pom.xml 我试图排除slf4j-log4j12,但仍然不能工作,每次都有警告 我找遍了所有的地方,但我无法移除警告。 有什么建议吗?