Spring

[Spring boot 에러] Cannot resolve symbol 'EnableWebSecurity' 에러 해결 방법

주인장 지니 2023. 5. 8. 12:40
728x90
728x90

문제점

Spring boot에서 Spring Security를 통해 로그인을 구현하려고 하는 도중

Cannot resolve symbol 'EnableWebSecurity라는 에러가 발생하였다.

 

구글링을 통해 무엇이 문제인지 검색해 본 결과,

build.gradledependency를 추가하지 않은 탓이었다.

 

해결방안

build.grade의 dependencies에 아래 속성을 추가해 준다.

implementation 'org.springframework.boot:spring-boot-starter-security


추가를 해주고 나면 @EnableWebSequrity 가 문제없이 작동할 것이다. 

728x90
728x90