问题描述
我有一个使用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");
}