How to disable the expression language in a jsp?

Questions by anampr   answers by anampr

Showing Answers 1 - 4 of 4 Answers

Navdeep

  • Aug 19th, 2011
 

We can use isEliIgnored property or we can disable by using below code..

Code
  1. <jsp-config>

  2. <jsp-property-group>

  3. <url-pattern>*.jsp</url-pattern>

  4. <el-ignored>true</el-ignored>

  5. </jsp-property-group

  6. </jsp-config>


  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions