728x90
728x90
문제점
Spring boot에서 Spring Security를 통해 로그인을 구현하려고 하는 도중
Cannot resolve symbol 'EnableWebSecurity라는 에러가 발생하였다.
구글링을 통해 무엇이 문제인지 검색해 본 결과,
build.gradle 에 dependency를 추가하지 않은 탓이었다.
해결방안
build.grade의 dependencies에 아래 속성을 추가해 준다.
implementation 'org.springframework.boot:spring-boot-starter-security
추가를 해주고 나면 @EnableWebSequrity 가 문제없이 작동할 것이다.
728x90
728x90
'Spring' 카테고리의 다른 글
Postman에서 Token 값 저장하기 (1) | 2023.05.08 |
---|---|
[H2 실행 에러] Sorry, remote connections ('webAllowOthers') are disabled on this server. 에러 해결 방법 (1) | 2023.05.08 |
[Spring boot 에러] Cannot resolve taglib with uri http://java.sun.com/jsp/jstl/core 에러 해결 방법 (0) | 2023.05.08 |
엔티티 매핑(Entity Mapping) (0) | 2023.05.07 |
영속성 컨텍스트(Persistence Context) (0) | 2023.05.07 |