src 경로가 잘못되어서 or Spring Security에서 차단
🌿 해결
1. 이미지 파일을 static 폴더로 옮겼다.
<img src="../../파일명.png">
이미지를 사용하는 HTML 파일이 templates/user 아래에 있었다.
나의 경우는 파일 구조가 아래와 같았다.
resources
- static
- 이미지.png
- templates
-
- user
- 파일.html
- user
2. Spring Security 설정에서 antMatchers().permitAll()에 "/*"를 추가했다.
참고 👇
https://stackoverflow.com/questions/44455900/spring-security-login-page-images
반응형
'FE > html' 카테고리의 다른 글
CSR | SSR (0) | 2022.10.25 |
---|---|
jQuery.Deferred exception: header is not defined ReferenceError: header is not defined (0) | 2022.10.13 |
[Error] 네이버 로그인 API Callback URL (0) | 2022.10.03 |
[Error] naver login Uncaught TypeError: Cannot read properties of undefined (reading 'age') (0) | 2022.10.03 |
JavaScript에서 model 값 가져오기 (0) | 2022.08.13 |