JSF doesn't interpreted in seam

后端 未结 3 1472
猫巷女王i
猫巷女王i 2021-01-27 17:32

Hy guys,

I installed jboss-seam on weblogic 10.3 (with many problem :( ) but now it\'s work, my application is deployed.

But now, I have a new problem, my JSF is

3条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-27 17:40

    If the XHTML page is not been parsed by the FacesServlet, then it simply means that the request URL did not match the url-pattern of the FacesServlet. You have set its url-pattern to *.seam So, to open the JSF page, you should not invoke it by http://example.com/page.xhtml, but by http://example.com/page.seam.

    By the way, the javax.faces.DEFAULT_SUFFIX sets the actual file extension of template files where JSF should look for and parse. You've set it to .seam as well, but this should really be .xhtml.

提交回复
热议问题