[인스타그램 클론 코딩][Spring boot] 2. Security 설정
·
프로젝트/인스타그램 클론 코딩
Security 라이브러리를 등록하면 인증되지 않은 모든 사용자를 /login 으로 redirection 됨 상태 코드 302 = redirect SecurityConfig를 통해 설정해줌 📌 SecurityConfig 세팅 package yerong.InstagramCloneCoding.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.securit..