问题描述:
开发项目中,使用jboss7.1运行项目,发现项目中的log4j不起了作用,后来发现jboss启动项目会用到自己带的一个日志打印模块
问题解决方案:
http://www.xuebuyuan.com/1954635.html
项目的WEB-INF下面添加
jboss-deployment-structure.xml
内容如下
<?xml version="1.0" encoding="UTF-8"?>
<jboss-deployment-structure>
<deployment>
<exclusions>
<module name="org.apache.log4j" />
</exclusions>
</deployment>
</jboss-deployment-structure>