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

감사합니다. Andrew .. :) – Raghav