2016-12-06 5 views
0

web.xmlでwelcome-fileタグを設定する方法HTML/welcome.htmlのような別のパス。<welcome-file> HTML/welcome.html</ welcome-file>のようにweb.xmlのwelcome-file-listタグを別のパスに設定する方法

<welcome-file-list> 
    <welcome-file>HTML/welcome.html</welcome-file> 
</welcome-file-list> 

私を助けてください。

フォルダ構造は次のとおりです。

Web-inf 
>HTML 
web.xml 
index.html 

p.sのHTMLはフォルダです。ウェルカムページとしてHTMLフォルダ内のページを使用したいと思います。

これを行う方法?

答えて

0

WEB-INFの外にHTMLフォルダを置く必要があります。 web.xmlはWEB-INFの内側にある必要があります。それをやって

WEB-INF 
    |_ web.xml 
HTML 
    |_ index.html 
    |_ welcome.html 

、web.xmlファイルには、次のようになります:

<?xml version="1.0" encoding="UTF-8"?> 
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"> 
    <welcome-file-list> 
     <welcome-file>html/welcome.html</welcome-file> 
    </welcome-file-list> 
</web-app> 

私は私はあなたを助けることができる願っています。

+0

ありがとうアンドリュー.. :) – Raghav

関連する問題