tags:

views:

125

answers:

2

How does EL search for an attribute in JSP? and how to disable it?

does any one know the performance of EL?

A: 

This article explains everything that you are asking.

Vincent Ramdhanie
+2  A: 

In EL, if an object is not an implicit object it searches through the various scopes for an object of the given name. The order in which the search takes place is below:

  1. Page scope
  2. Request scope
  3. Session scope
  4. Application scope

To disable EL: <%@ page isELIgnored ="true" %>

Taylor Leese