경주장

3-1. SpringBoot 정적파일 로딩 이슈 해결 본문

프로젝트/자바지기

3-1. SpringBoot 정적파일 로딩 이슈 해결

달리는치타 2022. 1. 8. 20:35

자바지기 박재성님의 오픈 강의를 따라가던 중 서버를 띄우는 과정에서 정적 파일을 로딩하지 못하는 문제를 만났다.

 

 css, js파일을 불러오지 못함

<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css">

=>

<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" th:href="@{/css/bootstrap.min.css}">

정적파일을 static 폴더로 모두 옮기고 타임리프를 적용하니 정상적으로 로딩이 되었다.

 

 

 

참고한 포스팅: 

https://universecoding.tistory.com/80