2017-09-12 10 views
0

私は残りのWebアプリケーションプロジェクトに取り組んでいますが、残りの呼び出しが正常に動作している間はアプリケーションのHTMLまたはJSPファイルにアクセスできません。 は以下のweb.xml残りのWebアプリケーションでリソースが利用できません

<?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>User Management</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>default.jsp</welcome-file> 
 
    </welcome-file-list> 
 

 
    <servlet> 
 
    <servlet-name>Jersey RESTful Application</servlet-name> 
 
    <servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class> 
 
    <init-param> 
 
     <param-name>jersey.config.server.provider.packages</param-name> 
 
     <param-value>com.ali</param-value> 
 
    </init-param> 
 
    </servlet> 
 

 
    <servlet-mapping> 
 
    <servlet-name>Jersey RESTful Application</servlet-name> 
 
    <url-pattern>/rest/*</url-pattern> 
 
    </servlet-mapping> 
 

 
</web-app>

で、テスト目的のために、私は私のプロジェクトのWebコンテンツの下にHello.jspの下に作成し、保持している

<%@ page language="java" contentType="text/html; charset=ISO-8859-1" 
 
    pageEncoding="ISO-8859-1"%> 
 
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
 
    <html> 
 

 
    <head> 
 
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> 
 
    <title>Hello World - JSP tutorial</title> 
 
    </head> 
 

 
    <body> 
 
    <%= "Hello World!" %> 
 
    </body> 
 

 
    </html>

私のUserManagementプロジェクトはです

誰かが私がどこに間違っているのか、なぜHTMLやJSPにアクセスしようとしているときにリソースが利用できないというエラーが出るのかを教えてもらえますか?

ありがとうございました。 Ali。

答えて

0

web.xmlに必要ないくつかの修正

<welcome-file-list> 
    <welcome-file>hello.jsp</welcome-file> 
</welcome-file-list> 

は現在、プロジェクトのURLにプロジェクトを呼ん

関連する問題