我使用Apache Maven 3创建了一个Eclipse Web项目。我遇到了表达式语言的问题。它默认是禁用的,我尝试通过web.xml启用它是徒劳的。
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<el-enabled>true</el-enabled>
<scripting-enabled>true</scripting-enabled>
</jsp-property-group>
</jsp-config>
我能够使它们工作的唯一方法是在JSP页面上使用这个scriptlet。
<%@ page isELIgnored="false" %>
我项目的POM如下:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>learn.filter</groupId>
<artifactId>LearnFilters</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>LearnFilters Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
</dependencies>
<build>
<finalName>LearnFilters</finalName>
<plugins>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat6-maven-plugin</artifactId>
<version>2.0</version>
<configuration>
<port>8080</port>
<path>/LearningFilters</path>
<warFile>${project.basedir}/target/${project.build.finalName}.war</warFile>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
有什么方法可以通过web.xml或默认启用它们?此外,这种构建创建了两个web.xmls!这真令人困惑。请指教。
答案 0 :(得分:1)
你的web.xml版本是什么?默认情况下,{A {1}}在2.4 AFAIK中为false。所以使用2.5或3.0命名空间,一切都会好的。
答案 1 :(得分:0)
我觉得标签就是问题。
你拥有的是
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<el-enabled>true</el-enabled>
<scripting-enabled>true</scripting-enabled>
</jsp-property-group>
</jsp-config>
我认为应该是&#34; el-ignored&#34;而不是&#34; el-enabled&#34;。它一直对我有用。这告诉Web容器,如果遇到任何表达式语言,它不应该忽略jsps中的表达式语言。
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<el-ignored>
false
</el-ignored>
</jsp-property-group>
</jsp-config>
这是与
等效的web.xml<%@ page isELIgnored="false" %>