강의

멘토링

커뮤니티

Inflearn Community Q&A

letscocoding's profile image
letscocoding

asked

Spring Boot Concepts and Utilization

Spring Web MVC Part 6: Index Page and Favicon

실습을 따라하는데 에러가 발생했습니다.

Written on

·

247

0

https://github.com/goodGid/Inflearn

http://localhost:8080/m/hello.html ==> 에러 발생

http://localhost:8080/ ==> index.html 못찾는 에러 발생

왜 이런 에러가 뜨는걸까요?

javaspring-bootspring

Answer 2

4

저의 경우 @Configuration을 사용해도 index.html을 못찾는 에러가 발생했었습니다.

여러가지 시도를 해보다가 application.properties에 spring.mvc.static-path-pattern=/static/** 이 남아 있어서 이를 지우고 실행하니 해결되었습니다.

0

whiteship님의 프로필 이미지
whiteship
Instructor

WebConfig.java 여기에 @Configurable이 아니라 @Configuration을 사용해야 합니다.

letscocoding's profile image
letscocoding

asked

Ask a question