본문 바로가기
Programming | Study/Spring

[spring] index 페이지 설정

by jinju 2021. 8. 8.

spring 실행 시 home.jsp 페이지가 실행이 된다.

먼저 src에 index.jsp 페이지를 생성

 

web.xml 에서 이렇게 설정해주면 끝

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee; https://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

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

 

'Programming | Study > Spring' 카테고리의 다른 글

[spring] 프로젝트 구조  (0) 2021.09.22
[Spring] MVC  (0) 2021.09.22
[Spring] *do 실행 안되는 경우 (404오류)  (0) 2021.09.07
Apache Maven  (0) 2021.09.04
[Spring] Apache Maven / 프로젝트 생성  (0) 2021.06.25

댓글