当我运行我的战争时,我在 Tomcat 6.0.29 中收到以下错误:
TagLibraryInfoImpl createAttribute
WARNING: Unknown element (deferred-value) in attribute
在 jsp 中,当它评估这段代码时:
<c:if test='${pageContext["request"].userPrincipal.principal.enabled eq false}'>
我已经用谷歌搜索并检查了我是否使用了正确的依赖项。
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>servlet-api</artifactId>
<version>${apache.tomcat}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>taglibs</groupId>
<artifactId>standard</artifactId>
<version>1.1.2</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
根据我的 JSP 版本(web.xml)
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5" xmlns="http://java.sun.com/xml/ns/javaee">
...
</web-app>
它在我尝试过的每个 Tomcat 6 实例中都失败了,但是在使用 maven“tomcat:run”(使用相同的 6.0.29 版本)时它可以工作