jsf 和 jsf 之间的导航jsp
在简单的程序中,登录页面使用 JSF 编写,其他页面使用 JSP 登录准确正确,并且显示主页,但其他页面的链接不起作用并记录以下内容:
ERROR:PWC6117 createAccount.jsp not found
我确信路径是正确的,当按 Ctrl intelliJ 时知道它。我使用 Facelets,这是 web.xml
文件:
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
In simple program the login page write with JSF and other page with JSP Login accurate correct and main page is show but link for other page not work and log this:
ERROR:PWC6117 createAccount.jsp not found
I'm sure the path is correct and when press Ctrl intelliJ know it. I use Facelets and this is web.xml
file:
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此错误消息是未配置 JSP servlet 的嵌入式 Jetty 服务器的典型错误消息。您有 2 个选项可以解决此问题:
.html
或.xhtml
。This error message is typical for embedded Jetty server which is not configured with JSP servlet. You have 2 options to solve this problem:
.html
or.xhtml
.