log4j 整合web 报错 不读取配置文件
StatusLogger No log4j2 configuration file found. Using default configuration: logging only errors to the console
我的log4j2.xml 文件在 resource 目录的 log4j2下
我的web.xml 配置中 添加:
```
<!--log4j2-->
<listener>
<listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
</listener>
<context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>classpath:log4j/log4j2.xml</param-value>
</context-param>
<context-param>
<param-name>log4jRefreshInterval</param-name>
<param-value>60000</param-value>
</context-param>
```
求助为何现在控制台报这个错误
----------
ERROR StatusLogger No log4j2 configuration file found. Using default configuration: logging only errors to the console.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
回复
通过在配置文件里面配置来实现归类啊
回复
是在web.xml 我那样配置吗? 我配多一级路径后找不到配置文件了
回复
不,通过在log4j2.xml文件里面配置来实现
回复
不是 我的归类不是日志文件归类 是我将配置文件放在不同目录下 归类
回复
没必要那样做,画蛇添足了