java.lang.IllegalStateException: CDATA tags may not nest

后端 未结 6 2036
渐次进展
渐次进展 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:51

    I had the same problem as yours, When I used binding with autocomplete component from the backing bean it worked fine.

    
    
    

    and in the backing bean

    private AutoComplete compui;
    //compui is initialized when bean is constructed
        public AutoComplete getCompui() {
                return compui;
            }
    
            public void setCompui(AutoComplete compui) {
                this.compui = compui;
            }
    

提交回复
热议问题