最近項目中引入了 Activemq 進行消息的推送。開始運行正常也沒有發現有什麼問題,有一次看控制檯日誌時發現有點問題 SLF4J: Class path contains multiple SLF4J bindings. 通過了解發現同事在引入 Activemq 時使用html
<dependency> <groupId>org.apache.activemq</groupId> <artifactId>activemq-all</artifactId> <version>5.14.3</version> </dependency>
的方式,由於項目中原本就使用了 slf4j-log4j12 記錄日誌,而 Activemq 自己也使用了這套日誌框架,從而出現日誌衝突問題。 此時,服務器會根據本身的規則去選擇一種方式進行日誌記錄,這樣的話就會存在日誌丟失問題。spring
使用 maven 的 exclusions 功能。就是在引入 Activemq 時,把項目中的日誌 jar 包包起來,這樣作就可使得Activemq 使用項目中存在的日誌 jar 。 配置以下:apache
<dependency> <groupId>org.apache.activemq</groupId> <artifactId>activemq-all</artifactId> <version>5.14.3</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </exclusion> <exclusion> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </exclusion> </exclusions> </dependency>
這樣配置以後從新測試。發現問題仍是存在。slf4j 官網也是這樣建議解決包衝突問題的,但在這裏就沒有效果。 原來 activemq-all 使用的pom中使用了maven-plugin:maven-shade-plugin,來構建jar包,致使 exclusion 沒法使用!! 因此這種方式無效api
不依賴 activemq-all.jar ,而是單獨依賴 Activemq 的原生 jar 。 那麼 Activemq 中主要分爲那些包,請參考:框架
http://activemq.apache.org/version-5-initial-configuration.htmlmaven
activemq-broker.jaride
activemq-client.jar測試
activemq-kahadb-store.jar日誌
activemq-spring.jar
hawtbuf-1.11.jar
slf4j-api.jar
slf4j-log4j12.jar
log4j-1.2.17.jar
J2EE APIs which could be the j2ee.jar from Sun or your J2EE container or you could use Geronimo's freely distributable geronimo-spec-j2ee.jar. If you are inside a servlet container and being dependent on the j2ee.jar causes you troubles, the parts of the J2EE jar we are dependent on are as follows...
geronimo-spec-jms.jar
geronimo-spec-jta.jar
geronimo-spec-j2ee-management.jar
If you want to grab a J2EE specification jar we recommend the Apache repository 網上有些帖子每一個人指明的依賴jar都不同,這裏仍是以官網文檔爲準。
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>4.1.4.RELEASE</version> </dependency> <dependency> <groupId>org.apache.activemq</groupId> <artifactId>activemq-spring</artifactId> <version>5.14.3</version> </dependency> <dependency> <groupId>org.apache.activemq</groupId> <artifactId>activemq-kahadb-store</artifactId> <version>5.14.3</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>4.1.4.RELEASE</version> </dependency> <dependency> <groupId>org.apache.activemq</groupId> <artifactId>activemq-broker</artifactId> <version>5.14.3</version> </dependency> <dependency> <groupId>org.apache.activemq</groupId> <artifactId>activemq-client</artifactId> <version>5.14.3</version> </dependency> <dependency> <groupId>org.fusesource.hawtbuf</groupId> <artifactId>hawtbuf</artifactId> <version>1.11</version> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-jms_1.1_spec</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-j2ee-management_1.1_spec</artifactId> <version>1.0.1</version> </dependency>
這個過程當中還須要注意 jar 包的重複引入問題。 activemq-spring.jar 這個和 activemq-core.jar 重複。若是兩個包都引入會出現部分類建立錯誤。這個須要不斷的測試才能解決。 看完配置文件你可能會注意多了兩個 spring 相關的 jar 包。若是項目中已經引入就不用重複引入了,若是沒有則須要加上。不然初始化時就會報錯。