JBoss 7.1 has the log4j module built in. When developing, the project can just include the logging API lib (like log4j) in the project classpath, so that the project compiles. When build, the log4j.jar/log4j.xml/log4j.properties does not need to be packed in the deployment archive (ear, or war). It would be ignored by JBoss 7 even you include them in the archive.
The configuration file for the standalone server is "C:\jboss-as-7.1.1\standalone\configuration\standalone.xml".
To confiure the console output format and the server log file, just edit the section for logging.
<subsystem xmlns="urn:jboss:domain:logging:1.1">
<console-handler name="CONSOLE">
<level name="DEBUG"/>
<formatter>
<pattern-formatter pattern="%d %-5p [%c] %m%n"/>
</formatter>
</console-handler>
<periodic-rotating-file-handler name="FILE">
<formatter>
<pattern-formatter pattern="%d{yyyy-MM-dd HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n"/>
</formatter>
<file relative-to="jboss.server.log.dir" path="server.log"/>
<suffix value=".yyyy-MM-dd"/>
<append value="true"/>
</periodic-rotating-file-handler>
<logger category="javax">
<level name="INFO"/>
</logger>
<logger category="javax.enterprise">
<level name="INFO"/>
</logger>
<logger category="javax.faces">
<level name="INFO"/>
</logger>
<logger category="org.jboss">
<level name="INFO"/>
</logger>
<logger category="org.hibernate">
<level name="INFO"/>
</logger>
<logger category="com.sun">
<level name="WARN"/>
</logger>
<logger category="com.arjuna">
<level name="WARN"/>
</logger>
<logger category="org.apache">
<level name="ERROR"/>
</logger>
<logger category="org.apache.tomcat.util.modeler">
<level name="WARN"/>
</logger>
<logger category="sun.rmi">
<level name="WARN"/>
</logger>
<logger category="jacorb">
<level name="WARN"/>
</logger>
<logger category="jacorb.config">
<level name="ERROR"/>
</logger>
<root-logger>
<level name="DEBUG"/>
<handlers>
<handler name="CONSOLE"/>
<handler name="FILE"/>
</handlers>
</root-logger>
</subsystem>
In the above example, the two root loggers has logging level set to "DEBUG", in order to remove some bloat output from javax, jboss, apache etc, it sets those categories to logging level "INFO" or even "ERROR". Note that "DEBUG/INFO/ERROR" etc might be case sensitive and lower case not working.
With this configuration, the console output looks like this:
2012-08-22 13:11:57,306 DEBUG [test.jxee.action.AsyncEJBTestBean] testCallAndGetResult... 1345597917306
2012-08-22 13:11:57,321 DEBUG [test.jxee.action.AsyncEJBTestBean] AsyncEJB not finished yet, pause 1 second...
2012-08-22 13:11:57,321 DEBUG [test.jxee.ejb.AsyncEJB] >>> AsyncEJB inited: test.jxee.ejb.AsyncEJB@11e36af
2012-08-22 13:11:57,321 DEBUG [test.jxee.ejb.AsyncEJB] >>> callAndGetResult() started: 1345597917321
2012-08-22 13:11:58,321 DEBUG [test.jxee.action.AsyncEJBTestBean] AsyncEJB not finished yet, pause 1 second...
2012-08-22 13:11:59,321 DEBUG [test.jxee.action.AsyncEJBTestBean] AsyncEJB not finished yet, pause 1 second...
2012-08-22 13:12:00,321 DEBUG [test.jxee.action.AsyncEJBTestBean] AsyncEJB not finished yet, pause 1 second...
2012-08-22 13:12:01,321 DEBUG [test.jxee.action.AsyncEJBTestBean] AsyncEJB not finished yet, pause 1 second...
2012-08-22 13:12:02,321 DEBUG [test.jxee.ejb.AsyncEJB] >>> callAndGetResult() about to send result: 1345597922321
2012-08-22 13:12:02,321 DEBUG [test.jxee.action.AsyncEJBTestBean] testCallAndGetResult...done 1345597922321
Problem:
What if i want to use my own log4j configuration?
This is rare use case, simple answer is why and what the point to use your own logging configuration?
Here's how if you really want to do it. Since JBoss 7.1 already has the log4j module installed, if you want to use your own logging implementation, you need to tell JBoss to unload its log4j. This can be done by providing a conf file called "META-INF/jboss-deployment-structure.xml". It needs to be at a "META-INF" folder, which is located at the root of your deployment archive, ie, ear or war.
Here's an example of this conf file to prevent JBoss 7 from loading it default log4j module:
<?xml version="1.0" encoding="UTF-8"?>
<jboss-deployment-structure>
<deployment>
<!-- to prevent the server from automatically adding some modules-->
<exclusions>
<module name="org.apache.log4j" />
</exclusions>
</deployment>
</jboss-deployment-structure>
分享到:
相关推荐
7.1 Installation and Uninstallation . . . . . . . . . . . . . . . . . . . . . . . 170 7.2 Managing User Segments . . . . . . . . . . . . . . . . . . . . . . . . . 170 7.3 Managing Campaigns . . . . . ...
python学习资源
jfinal-undertow 用于开发、部署由 jfinal 开发的 web 项目
基于Andorid的音乐播放器项目设计(国外开源)实现源码,主要针对计算机相关专业的正在做毕设的学生和需要项目实战练习的学习者,也可作为课程设计、期末大作业。
python学习资源
python学习资源
python学习一些项目和资源
【毕业设计】java-springboot+vue家具销售平台实现源码(完整前后端+mysql+说明文档+LunW).zip
HTML+CSS+JavaScarip开发的前端网页源代码
python学习资源
【毕业设计】java-springboot-vue健身房信息管理系统源码(完整前后端+mysql+说明文档+LunW).zip
成绩管理系统C/Go。大学生期末小作业,指针实现,C语言版本(ANSI C)和Go语言版本
1_基于大数据的智能菜品个性化推荐与点餐系统的设计与实现.docx
【毕业设计】java-springboot-vue交流互动平台实现源码(完整前后端+mysql+说明文档+LunW).zip
内容概要:本文主要探讨了在高并发情况下如何设计并优化火车票秒杀系统,确保系统的高性能与稳定性。通过对比分析三种库存管理模式(下单减库存、支付减库存、预扣库存),强调了预扣库存结合本地缓存及远程Redis统一库存的优势,同时介绍了如何利用Nginx的加权轮询策略、MQ消息队列异步处理等方式降低系统压力,保障交易完整性和数据一致性,防止超卖现象。 适用人群:具有一定互联网应用开发经验的研发人员和技术管理人员。 使用场景及目标:适用于电商、票务等行业需要处理大量瞬时并发请求的业务场景。其目标在于通过合理的架构规划,实现在高峰期保持平台的稳定运行,保证用户体验的同时最大化销售额。 其他说明:文中提及的技术细节如Epoll I/O多路复用模型以及分布式系统中的容错措施等内容,对于深入理解大规模并发系统的构建有着重要指导意义。
基于 OpenCV 和 PyTorch 的深度车牌识别
【毕业设计-java】springboot-vue教学资料管理系统实现源码(完整前后端+mysql+说明文档+LunW).zip
此数据集包含有关出租车行程的详细信息,包括乘客人数、行程距离、付款类型、车费金额和行程时长。它可用于各种数据分析和机器学习应用程序,例如票价预测和乘车模式分析。
把代码放到Word中,通过开发工具——Visual Basic——插入模块,粘贴在里在,把在硅基流动中申请的API放到VBA代码中。在Word中,选择一个问题,运行这个DeepSeekV3的宏就可以实现在线问答
【毕业设计】java-springboot+vue机动车号牌管理系统实现源码(完整前后端+mysql+说明文档+LunW).zip