[Security] JWT 구현 (1) - 프로젝트 생성
rlaehddnd0422
이 전에 Security에 Jwt를 도입하여 Authentication & Authorization 방식은 인증 아키텍쳐를 따라 어떤 흐름으로 로직이 흘러가는지 알아보았습니다. 이번에는 이 전과 조금 다른 방식으로 JWT를 Security에 도입해보도록 합시다. 프로젝트 생성 Spring boot : 2.7.12 ver dependencies에 추가해주고 Generate Spring Web Spring Security Validation Spring Data Jpa Lombok H2 Database API TEST package dongwoongkim.jwttutiral2.controller; import org.springframework.http.ResponseEntity; import org.spr..