본문 바로가기
오류해결

[Spring Boot + JPA + Gradle + Mysql + IntelliJ] org.springframework.web.servlet.resource.NoResourceFoundException: No static resource .

by devthrive 2023. 12. 16.
SMALL

프로젝트 생성하고 난후 실행시

org.springframework.web.servlet.resource.NoResourceFoundException: No static resource . 라는 error가 나옴

 

확인 해보니 resoucres/static 아래 html 파일이 없어서 생긴 거임

 

index.html을 하나 만들어 놓고

index.html 코드 추가

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<h1>Hello</h1>
</body>
</html>

 

다시 실행 하면 된다.

LIST