JSF Custom EL function works only on the first load of the page.
Posted
by jsfQ
on Stack Overflow
See other posts from Stack Overflow
or by jsfQ
Published on 2010-04-23T15:00:14Z
Indexed on
2010/04/23
15:03 UTC
Read the original article
Hit count: 493
I created a ( JSP-based) custom EL function to use in the rendered tag. The function will return a boolean to decide if a page component needs to be rendered on a page or not. I import it onto the jsp page using <%@ taglib uri = "/WEB-INF/mine.tld" prefix = "g" %>.
Everything works perfect on the first load of the jsp page. Once a button is clicked, the form submits and then I am getting errors like 'No ClassLoaders found for: the class which implements my EL function' and 'Function not found'. What is going on here? What will be a fix?
© Stack Overflow or respective owner