如何log4j.xml
在 spring 核心应用程序中使用日志记录?在 Spring MVC 中,我可以在以下位置进行配置web.xml
:
<context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>/WEB-INF/classes/log4j.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
</listener>
我怎样才能用弹簧核心应用程序做到这一点?有人可以给我一个启动想法吗?