본문 바로가기

내가_겪은_문제들

Could not find org.thymeleaf.extras:thymeleaf-extras-springsecurity5:

1. 메세지

2. 문제

  • 실습환경이 스프링 3.0 이상 버전인데, 강의는 2.7.X 라서 버전차이에서 오는 오류였다
  • 찾아보니 타임리프의 버전을 달리해줘야 했음
  • Spring Boot 3.0 이상 부터는 thymeleaf-extras-springsecurity6 버전을 사용해야 함

3. 해결

{  // 디펜던시 수정
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6'
}

 

참고 https://velog.io/@yoondoong/Could-not-find-org.thymeleaf.extrasthymeleaf-extras-springsecurity5

 

Could not find org.thymeleaf.extras:thymeleaf-extras-springsecurity5

Could not find org.thymeleaf.extras:thymeleaf-extras-springsecurity5dependency에 아래와 같이 버전을 같이 명시해주면 됨implementation 'org.thymeleaf.extras:thymeleaf-ex

velog.io