我尝试转到我的页面“index.xhtml”,在浏览器地址栏中输入 /index.xhtml,但它导致 404 错误,即找不到 index.jsp。我不知道为什么调用jsp。
我的观点:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:c="http://java.sun.com/jsp/jstl/core">
<h:head>
<title>This is a Test</title>
</h:head>
<h:body>
<div>
<H2>
<h:outputText value="test"/>
</H2>
</div>
</h:body>
</html>
我的 web.xml:
<servlet>
<servlet-name>FacesServlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>FacesServlet</servlet-name>
<url-pattern>*.xhtml</url-pattern>
</servlet-mapping>