You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

With JSP2.1 the "#" character is used in the JSP EL. OGNL does use this escape character as well.
To get around this there is the possibility to disable JSP EL in web.xml:

<jsp-config>
  <jsp-property-group>
    <url-pattern>*.jspx</url-pattern>
    <el-ignored>true</el-ignored>
  </jsp-property-group>
</jsp-config>    

related threads:

  • No labels