Tired of old EL in JSP not being able to invoke methods on beans etc.
Can I use SpEL from Spring 3.0 in my JSP:s?
|
Tired of old EL in JSP not being able to invoke methods on beans etc. Can I use SpEL from Spring 3.0 in my JSP:s? |
|||
|
|
|
The upcoming Spring Framework 3.0.1 release adds a new spring:eval JSP tag that allows you to evaluate SpEL expressions from JSP pages. Future versions will add native integration with JSP 2.1 or > engines via a Unified EL adaption layer. |
|||||
|
|
It would be nice, wouldn't it, but no, JSP EL is a function of the JSP compiler. The best you could do would be to write a custom taglib which evaluated contained SpEL expressions, which would be rather clunky. |
|||
|
|
|
I use JBoss EL within Tomcat in the manner described by McDowell. I included the jboss-el.jar in WEB-INF/lib for my application and added this snippet to web.xml:
|
|||
|
|
|
If an upgrade is possible, you can get method invocation support in the latest JSP EL/Java EE implementations (e.g. Java EE 6 using GlassFish v3). The JUEL (an EL implementation) doc page suggests you can upgrade either by putting the classes into your JRE's ext directory or by putting them in I don't know enough about the Spring implementation to know how they plug in their EL support. |
||||
|