Warning: This page calls for XML namespace declared with prefix [tagname] but no taglibrary exists for that namespace

后端 未结 1 1519
时光说笑
时光说笑 2020-12-10 03:41

I\'ve declared the Facelet view template as follows:



        
相关标签:
1条回答
  • 2020-12-10 04:32

    You've declared plain HTML <input> elements and the XML parser is somehow not been configured to use http://www.w3.org/1999/xhtml as global XML namespace. Add it yourself.

    <ui:composition xmlns="http://www.w3.org/1999/xhtml">
    
    0 讨论(0)
提交回复
热议问题