Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

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:

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

related threads: