pom.xml需要额外引入的jar:

         <dependency>
            <groupId>org.apache.logging.log4j</groupId>
            <artifactId>log4j-web</artifactId>
            <scope>runtime</scope>
        </dependency> 

web.xml:

    <context-param>
        <param-name>log4jConfiguration</param-name>
        <param-value>"log4j2.xml所在目录"/log4j2.xml</param-value>
    </context-param>

    <listener>
        <listener-class>org.apache.logging.log4j.web.Log4jServletContextListener</listener-class>
    </listener>

相关文章:

  • 2021-07-05
  • 2022-12-23
  • 2021-09-27
  • 2021-09-08
  • 2022-12-23
  • 2021-08-19
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-10-26
  • 2022-12-23
  • 2022-12-23
  • 2021-08-14
  • 2021-09-24
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案