天天看點

引入 Activemq 之後日志沖突問題解決方案

記錄一次解決引入 Activemq 之後日志沖突問題。

發現問題

最近項目中引入了 Activemq 進行消息的推送。開始運作正常也沒有發現有什麼問題,有一次看控制台日志時發現有點問題 SLF4J: Class path contains multiple SLF4J bindings. 經過了解發現同僚在引入 Activemq 時使用

<dependency>
             <groupId>org.apache.activemq</groupId>
	         <artifactId>activemq-all</artifactId>
            <version>5.14.3</version>
    </dependency>
           

的方式,因為項目中本來就使用了 slf4j-log4j12 記錄日志,而 Activemq 本身也使用了這套日志架構,進而出現日志沖突問題。 此時,伺服器會根據自己的規則去選擇一種方式進行日志記錄,這樣的話就會存在日志丢失問題。

解決問題

方法一

使用 maven 的 exclusions 功能。就是在引入 Activemq 時,把項目中的日志 jar 包包起來,這樣做就可以使得Activemq 使用項目中存在的日志 jar 。 配置如下:

<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 無法使用!! 是以這種方式無效

參考 https://www.slf4j.org/codes.html

方法二

不依賴 activemq-all.jar ,而是單獨依賴 Activemq 的原生 jar 。 那麼 Activemq 中主要分為那些包,請參考:

http://activemq.apache.org/version-5-initial-configuration.html
  • activemq-broker.jar
  • 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 包。如果項目中已經引入就不用重複引入了,如果沒有則需要加上。否則初始化時就會報錯。

版權聲明:本文為CSDN部落客「weixin_34107955」的原創文章,遵循CC 4.0 BY-SA版權協定,轉載請附上原文出處連結及本聲明。

原文連結:https://blog.csdn.net/weixin_34107955/article/details/92135264