springsecurity를 사용하기 위해 build.gradle에 의존성 추가 후 아래와 같은 에러가 떴다.
에러 로그가 워낙 길어서 필요한 부분만 가져왔다.
Error creating bean with name 'thymeleafViewResolver' defined in class path resource
Error creating bean with name 'templateEngine' defined in class path resource
Failed to instantiate [org.thymeleaf.spring5.SpringTemplateEngine]: Factory method 'templateEngine' threw exception;
Error creating bean with name 'securityDialect' defined in class path resource
Failed to introspect Class [org.thymeleaf.extras.springsecurity5.dialect.SpringSecurityDialect] from ClassLoader [jdk.internal.loader.ClassLoaders$AppClassLoader@2437c6dc]
✨ 해결
compile "org.springframework.boot:spring-boot-starter-security"
build.gradle의 dependencies에 추가했다.
역시 스프링 docs에서 찾아야 정확하다.
블로그에서 복붙했더니 에러가 떴었다.ㅠㅠ
참고 👉 https://docs.spring.io/spring-security/site/docs/current/reference/html5/#getting-gradle
반응형
'Framework > Spring Boot' 카테고리의 다른 글
[SpringSecurity] WebSecurityconfig (0) | 2021.11.19 |
---|---|
Spring Security 기본 로그인 화면 제거 (2) | 2021.11.02 |
[Error] spelevaluationexception (0) | 2021.10.13 |
Repository와 Service의 차이 (0) | 2021.09.19 |
[Error] 수정 후 조회수 초기화 (0) | 2021.08.07 |