我在Tomcat6(Eclipse IDE)上运行了一个JSP文件。我在jsp-config
文件中添加了一个web.xml
标记。
JSP
没有给我正确的结果所以我"清理了tomcat目录" (使用eclipse)现在好了。但问题是每当我更改此标记(jsp-config
)值时,我必须清理tomcat目录。应该是这样的吗?或者我做错了什么?我的web.xml
就像:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:web="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<el-ignored>false</el-ignored>
</jsp-property-group>
</jsp-config>
</web-app>
由于