Has anyone gotten a custom ELResolver to work in Tomcat 6.0.x using the
existing ELResolver stack? In other words, not entering it into the
faces-config.xml, but adding it through the JspApplicationContext.
--
View this message in context:
http://www.nabble.com/Tomcat-6.0.x-Custom-ELResolver-tf
I found that with Tomcat 6.0.8, I didn't need to initialize the
JspRuntimeContext, however my ELResolver is never actually hit. I placed
print outs in the constructor and all the overridden methods of my
ELResolver to determine if they were ever called. Only the constructor is
ever called.
The
I set up the ELResolver stack as follows:
javax.servlet.jsp.el.ImplicitObjectELResolver
demo.resolver.DCELResolver
javax.el.MapELResolver
javax.el.ResourceBundleELResolver
javax.el.ListELResolver
javax.el.ArrayELResolver
javax.el.BeanELResolver
demo.resolver.DebugE
I am trying to use a custom ELResolver that will work with the existing
default resolvers. Initially, I tried just adding it within the
face-config.xml as follows:
demo.resolver.DCELResolver
It worked to add my resolver, but it got rid of all the other resolvers in
the chain.
Next,