“Unknow type constant pool at position X” in tomcat logs since java 8

前端 未结 3 1725
别那么骄傲
别那么骄傲 2021-01-05 02:57

I have a Java JSF2 web based application deployed on a Tomcat server, and since we moved to Java 8 / Tomcat 8 this error appears a lot in the tomcat output:



        
3条回答
  •  鱼传尺愫
    2021-01-05 03:33

    I had the same same problem. I solved after updating my pom.xml file to 2.2.11.

    com.sun.faces
    jsf-api
    2.2.11
    
    jsf-impl
    2.2.11
    

    The postConstruct wasn't been execute in some ManagedBean, without any error.

提交回复
热议问题