While this will help with performance it will not be enough to match JSP.
You will still have many cases where you have to evaluate expression
#{bean.prop1}
#{bean.prop2}
#{bean.prop3}
#{bean.prop4}
#{bean.prop5}
#{bean.prop6}
and so on. (Case of rendering table)
EL has to be compiled into byte code instead of reflection calls
to really perform, so it has to be made type-safe via type declarations
of variables.
Caching of evaluated expressions is only partial solution.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4106950#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...