Java Web应用程序在GlassFish上成功部署,但在访问时可以使用404

时间:2014-04-30 03:22:11

标签: jsf java-ee glassfish ejb

首先,我必须说我对java企业版不太了解。好吧,我有一个Web应用程序,主要是JavaBean,JPA实体,两个JavaServer Faces文件和一个ManagedBean控制器,我在eclipse中使用Maven,我在我的机器上安装了Glassfish服务器(运行Arch的Linux)。

当我将war文件部署到glassfish时,我收到successfully deployed消息,但是当我尝试访问应该在http://localhost:8080/chapter10-2.0上的Web应用程序时,我得到了一个Http 404 Not Found响应,我有我自己尝试解决这个问题,但我还没有得到它,所以我非常感谢你们的帮助,谢谢。

我的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>chapter10</display-name>
<welcome-file-list>
  <welcome-file>index.html</welcome-file>
  <welcome-file>index.htm</welcome-file>
  <welcome-file>index.jsp</welcome-file>
  <welcome-file>default.html</welcome-file>
  <welcome-file>default.htm</welcome-file>
  <welcome-file>newBook.xhtml</welcome-file>
  <welcome-file>newBook.faces</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>*.faces</url-pattern>
</servlet-mapping>
</web-app>

0 个答案:

没有答案