백엔드 입사 과제에 API 서버 제작이 단골로 등장하여 그 보안으로 간단한 JWT 인증을 연습하면서 정리한 내용이다. 기본적인 JWT 인증 서버 구축에 도움이 되길 바란다. 설정 Gradle // Spring Security + JWT implementation 'org.springframework.boot:spring-boot-starter-security' implementation 'io.jsonwebtoken:jjwt:0.9.1' security와 jwt 추가 SecurityConfig 기존의 websecurityconfigureradapter를 상속하여 구현하는 방식이 사장된다고 해서, 새로운 방법으로 설정을 했다. 참고 : https://spring.io/blog/..