user3808021
user3808021

Reputation:

java.lang.Exception: No Function Found on type: org.primefaces.util.ComponentUtils with signature: java.lang.String resolveWidgetVar(java.lang.String)

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:

enter image description here

What should I do?

Upvotes: 2

Views: 8936

Answers (1)

0x5a4d
0x5a4d

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

Related Questions