Я получаю следующую ошибку во время выполнения после добавления activemq в свой build.gradle.
compile("org.apache.activemq:activemq-all:5.14.0")
Я пытался исключить модули, но, похоже, это не исключает возврат, как я ожидал.Посоветуйте, пожалуйста, что я могу сделать, чтобы исключить повторный вход.Еще одно замечание: это приложение kotlin, однако я не думаю, что это актуально.
compile("org.springframework.boot:spring-boot-starter-web:${springBootVersion}")
{
exclude module: "spring-boot-starter-logging"
exclude module: "logback-classic"
}
Вот исключение:
Exception in thread "main" java.lang.IllegalArgumentException: LoggerFactory is not a Logback LoggerContext but Logback is on the classpath. Either remove Logback or the competing implementation (class org.slf4j.impl.Log4jLoggerFactory loaded from file:/C:/Users/z037640/.gradle/caches/modules-2/files-2.1/org.apache.activemq/activemq-all/5.14.0/858a3bd95d20e7a8949006cdb50a7c362f8825ec/activemq-all-5.14.0.jar). If you are using WebLogic you will need to add 'org.slf4j' to prefer-application-packages in WEB-INF/weblogic.xml Object of class [org.slf4j.impl.Log4jLoggerFactory] must be an instance of class ch.qos.logback.classic.LoggerContext