Reputation:
I want to use primefaces 5
in intelliJ IDEA
.
I got this exception:
com.sun.faces.config.ConfigurationException: java.lang.Exception: No Function Found on type: org.primefaces.util.ComponentUtils with signature: java.lang.String resolveWidgetVar(java.lang.String)
at com.sun.faces.config.processor.FaceletTaglibConfigProcessor.processFunctions(FaceletTaglibConfigProcessor.java:642)
...
I have been added primefaces5
in maven dependencies, and now is in WEB-INF/lib
directory:
What should I do?
Upvotes: 2
Views: 8936
Reputation: 760
You should ensure that not conflicting versions of PrimeFaces lib in project / target / project / WEB-INF / lib folder. If so then try mvn:clean
project or mvn:update
.
Upvotes: 7