我想尽全力解决这个问题。已经几个小时了。
我有一个在Eclipse中创建的简单JSF应用程序。我想显示一个xhtml表单并有一个托管bean来处理它。我正在将其部署到Tomcat v8。
在第一时间,我什至无法显示表格;它返回404错误。添加jsf-impl和jsf-api罐子后,我终于得到了显示。但是后来我想添加核心面孔标签。使用这些标签后(将以下内容添加到html标签中)
xmlns:f="http://java.sun.com/core">
页面停止显示。所以我在构建路径中弄乱了罐子,男孩是个错误。我删除了核心faces标签引用,但现在无法显示一个简单页面!您可以在此处访问它以查看:
http://18.236.104.57/StuSurveyApp3/
结构和当前的罐子
https://preview.ibb.co/b8mU2f/jars.png
我的web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>StuSurveyApp3</display-name>
<welcome-file-list>
<welcome-file>StuSurvey.xhtml</welcome-file>
<welcome-file>display.html</welcome-file>
<welcome-file>index.xhtml</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.xhtml</url-pattern>
</servlet-mapping>
</web-app>
我什至不知道如何调试它。是否有一个坛子不见了?我把它们放在错误的地方了吗?!