본문으로 바로가기

Spring Boot index 페이지 설정

category PROJECTTOOL 5년 전

1. requestMapping(value="/") 컨트롤러 생성

@Controller
public class MainController {
	
	@RequestMapping(value="/")
	public String index() {
		return "redirect:/login";
	}
}

2. src/main/resources/index.html 파일생성

파일 생성 안하고 싶어서 찾다가 컨트롤러를 "/" 으로 만드니깐 저거부터 탄다.

PROJECTTOOL카테고리의 다른글

Spring Security 정리  (0) 2019.11.12
이클립스 Line width 변경  (0) 2019.11.08
Spring Boot Jpa 적용  (0) 2019.11.06
Jpa vs Mybatis  (0) 2019.11.06
Boot Spring 기본 WAS PORT 변경  (0) 2019.11.04