java.lang.IllegalStateException: CDATA tags may not nest

后端 未结 6 2040
渐次进展
渐次进展 2020-11-29 06:15

I\'ve got a problem with an ajax request in a JSF page. When I click on the button, I get this exception:

SEVERE: Servlet.service() for servlet Faces Servlet         


        
6条回答
  •  眼角桃花
    2020-11-29 06:40

    If you also see java.lang.ClassCastException: com.sun.faces.facelets.compiler.UIInstructions cannot be cast to org.primefaces.component.tree.UITreeNode in the server log, add

    
      javax.faces.FACELETS_SKIP_COMMENTS
      true
    
    

    to /WEB-INF/web.xml

提交回复
热议问题