0

我很确定这个问题很简单。我用谷歌应用引擎构建了一个应用程序。我将 JPA 和 JAX-RS 与泽西岛一起使用。我的 web.xml 看起来像这样:

<?xml version="1.0" encoding="utf-8" standalone="no"?><web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.5" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
    <servlet>
        <servlet-name>Jersey Web Application</servlet-name>
        <servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
        <init-param>
            <param-name>com.sun.jersey.config.property.packages</param-name>
            <param-value>com.rest</param-value>
        </init-param>
         <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>Jersey Web Application</servlet-name>
        <url-pattern>/resources/*</url-pattern>
    </servlet-mapping>
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
    </welcome-file-list>
 <servlet>
  <servlet-name>SystemServiceServlet</servlet-name>
  <servlet-class>com.google.api.server.spi.SystemServiceServlet</servlet-class>
  <init-param>
   <param-name>services</param-name>
   <param-value/>
  </init-param>
 </servlet>
 <servlet-mapping>
  <servlet-name>SystemServiceServlet</servlet-name>
  <url-pattern>/_ah/spi/*</url-pattern>
 </servlet-mapping>
 <welcome-file-list>
        <welcome-file>index.html</welcome-file>
 </welcome-file-list>
</web-app>

我的 index.html 在 war/WEB-INF/index.html 中。我需要做什么才能显示它?

4

2 回答 2

1

index.html 应该像 war/index.html 一样直接进入 war。

于 2012-08-17T18:54:37.850 回答
0

将您的文件保存在 war 文件夹中,不要保存在 WEB-INF 中。

一旦你把它拿出来,你只需要给 localhost:8888/ 它就会显示欢迎文件,即 index.html

您可以将其他 Jsp 保留在 WEB-INF 中,对于直接 URL 访问,它将是不可见的。

于 2012-08-21T19:00:48.493 回答