web.xml - JSP - 与tomcat相关的问题

时间:2014-09-09 07:08:04

标签: java jsp tomcat web.xml jsp-tags

我在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>

由于

0 个答案:

没有答案