你先將你程式內部的 log4j.properties or log4j.xml 全部拿掉,再 deploy
看看。如果沒問題再逐一將 自己的 config 一項一項放進
/jboss/server/default/conf/log4j.xml 測試。
方案2:
去[JBOSS_HOME]/server/default/conf/log4j.xml 改或加自己的設定這不太make sense,最好還是要針對個別application有自己的log4j設定檔比較合理。其實application若有自己的log4j war及設定檔,而導致JBoss啟動時出現 "ERROR: invalid console appender config detected, console stream is looping." 錯誤訊息時,只要去JBoss server層的conf資料夾中的jboss-service.xml中的org.jboss.logging.Log4jService的設定區段中加個參數:<attribute name="CatchSystemOut">false</attribute>即可,如:
<mbean code="org.jboss.logging.Log4jService" name="jboss.system:type=Log4jService,service=Logging"> <attribute name="ConfigurationURL">resource:log4j.xml</attribute> <attribute name="CatchSystemOut">false</attribute> <attribute name="Log4jQuietMode">true</attribute> </mbean>
本文提供了两种解决因应用程序内Log4j配置导致JBoss启动时出现invalidconsoleappenderconfigdetected,consolestreamislooping错误的方法。方案一是逐步移除并重新加入log4j.properties或log4j.xml文件;方案二是调整JBoss的jboss-service.xml文件中的Log4jService配置。
1459

被折叠的 条评论
为什么被折叠?



