• 在Jsp页面head位置添加
<%@ page trimDirectiveWhitespaces="true" %>

  • 在项目web.xml中添加
<servlet>
    <servlet-name>jsp</servlet-name>
    <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
    <init-param>
        <param-name>trimSpaces</param-name>
        <param-value>true</param-value>
    </init-param>
</servlet>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-24
  • 2022-12-23
  • 2022-01-24
  • 2021-09-18
猜你喜欢
  • 2021-09-08
  • 2021-10-16
  • 2022-12-23
  • 2021-10-08
  • 2022-12-23
  • 2022-12-23
  • 2021-09-13
相关资源
相似解决方案