Spring boot index.html 설정

2021. 4. 5. 22:55Java/Spring Boot

http://localhost:8081로 접속시 index.html 화면이 나오도록 설정

	@GetMapping("/")
	public String index() {
		return "forward:/index.html";
	}

'Java > Spring Boot' 카테고리의 다른 글

Spring Boot 설치  (0) 2021.12.25
파일 UTF-8 셋팅  (0) 2021.09.12
Spring boot WebMvcConfigurer jsp 셋팅  (0) 2021.04.05
WebMvcConfigurerAdapter is deprecated  (0) 2021.04.05
Spring boot thymeleaf 적용  (0) 2021.03.31