Bookmark Topic Watch Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Devaka Cooray
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • Liutauras Vilda
Sheriffs:
  • Junilu Lacar
  • paul wheaton
  • Paul Clapham
Saloon Keepers:
  • Piet Souris
Bartenders:
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
The EL is intended to replace scriptlets in modern JSP pages. As such, they really have little to do with each other. Scriptlet variables become local variables in the service method of the servlet created on behalf of your JSP. The EL has no access to these variables.

Rather, the EL operates upon scoped variables -- that is, objects placed in one of the context scopes: page, request, session or application.

Typically, scoped variables are created by the page controller for a JSP via the setAttribute() method of the appropriate scoped context.


JspFaq
 
    Bookmark Topic Watch Topic
  • New Topic