javax.faces.view.facelets.FaceletException: Error Parsing /my.xhtml: Error Traced[line: 42] The prefix “f” for element “f:facet” is not bound

后端 未结 3 1297
误落风尘
误落风尘 2020-12-07 02:49

I would like to create table which can display data from database into JSF page. I found this code:



        
3条回答
  •  既然无缘
    2020-12-07 03:20

    Replacing the f with h won't work, since there's no h:facet (in the JSF html taglib which is likely to be assigned to the h prefix). You'll have to include the appropriate taglib (JSF core) and assign it to the f prefix.

提交回复
热议问题