如何解决Log4j2 JSP Taglib在Spring-boot嵌入式Servlet容器中不起作用
我有一个使用spring-boot-starter-web构件创建的Spring boot Web应用程序。我正在使用Spring Boot嵌入式Servlet容器功能来使用Tomcat嵌入式服务器。我可以在Tomcat嵌入式模式下运行我的应用程序。我还可以创建我的应用程序的WAR文件,并将其部署到Tomcat的常规安装中。
我有一个JSP页面,我在其中使用log4j2's JSP taglib标签。在Tomcat的常规安装上,该JSP页面的日志记录按预期工作。但是当在Tomcat嵌入式服务器上启动bootRun时,出现以下错误
SEVERE: Servlet.service() for servlet [jsp] in context with path [] threw exception [The absolute uri: [http://logging.apache.org/log4j/tld/log] cannot be resolved in either web.xml or the jar files deployed with this application] with root cause
org.apache.jasper.JasperException: The absolute uri: [http://logging.apache.org/log4j/tld/log] cannot be resolved in either web.xml or the jar files deployed with this application
这个问题可以解决吗?
解决方法
发生此问题是因为默认情况下,Spring Boot跳过log4j-*.jar
。我已经打开an issue来解决这个问题。
您可以通过显式启用对log4j-taglib
jar的扫描来解决此问题。为此,您需要添加一个TomcatContextCustomizer
来更改jar扫描器的配置:
@Bean
TomcatContextCustomizer log4jTldScanningCustomizer() {
return (context) ->
((StandardJarScanFilter)context.getJarScanner().getJarScanFilter()).setTldScan("log4j-taglib*.jar");
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。