我正在尝试使用web.xml中的trimSpaces指令来修剪JSP空格,但是它不起作用。这是我的web.xml:
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_4.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" id="WebApp_ID" version="2.4"> <display-name>MyWebApp</display-name> <servlet> <servlet-name>MyServlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>MyServlet</servlet-name> <url-pattern>/login</url-pattern> </servlet-mapping> <init-param> <param-name>trimSpaces</param-name> <param-value>true</param-value> </init-param> </web-app>
我是新来的,不知道如何调试问题。我尝试将放在标记内,但这没有用。xml模式可能有问题吗?还是我的JSP版本不正确?(我几个月前才安装Tomcat,所以是最近的)
如您所见,我正在使用Tomcat7。还在使用Spring。
有什么建议么?
在<init-param>为JspServlet需要走在web.xml了的 servletcontainer 本身,而不是你的web应用。转到Tomcat安装文件夹并打开/conf/web.xml文件。找到<servlet>的进入JspServlet,并添加<init- param>那里。
<init-param>
JspServlet
web.xml
/conf/web.xml
<servlet>
<init- param>
例如,如果您想在web.xmlwebapp的全局配置中进行配置,例如因为servletcontainer配置不在您的控制范围内,那么您需要设置的<trim- directive-whitespaces>属性<jsp-config>。
<trim- directive-whitespaces>
<jsp-config>
<jsp-config> <jsp-property-group> <url-pattern>*.jsp</url-pattern> <trim-directive-whitespaces>true</trim-directive-whitespaces> </jsp-property-group> </jsp-config>