error

[Error] Could not find org.thymeleaf.extras:thymeleaf-extras-springsecurity5 해결 방법

ㅈㅣ니 2024. 2. 1.
반응형

문제 발생

Spring Boot 3.0 이상 버전에서 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5' dependency 추가 했을 때

에러가 발생했다.

 

해결 방법

 

찾아보니까 Spring Boot 3.0 이상 부터는

thymeleaf-extras-springsecurity6 버전을 사용한다.

 

build.gradle에 추가하기

implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6'

 

반응형