본문 바로가기

전체 글

(122)
[Spring Boot] Security6 JWT 발급 (3) https://jwt.io/ JWT.IOJSON Web Tokens are an open, industry standard RFC 7519 method for representing claims securely between two parties.jwt.io https://softwaresaramdle.tistory.com/48 [Spring Boot] Security6 토큰 기반 인증에 대한 설명토큰의 개요토큰은 사용자가 로그인할 때 생성되는 고유한 문자열입니다.이 토큰은 UUID 형식일 수도 있고, JSON Web Token (JWT) 형식일 수도 있습니다.사용자는 로그인 후 이 토큰을 받아서, 이후의softwaresaramdle.tistory.com https://softwaresaramdle.ti..
[Spring Boot] Security6 로그인 필터 구현 및 DB 로그인 검증(2) https://docs.spring.io/spring-security/reference/servlet/architecture.html Architecture :: Spring SecurityThe Security Filters are inserted into the FilterChainProxy with the SecurityFilterChain API. Those filters can be used for a number of different purposes, like authentication, authorization, exploit protection, and more. The filters are executed in a specdocs.spring.io 로직 흐름더보기사용자  |  vPOST..
[Spring Boot] Security6 회원가입 (1) 로직 흐름더보기사용자   |  vPOST /join (JoinRegisterDTO)  |  vJoinController  |  vjoinService.join(joinDTO)  |  vuserRepository.existsByUserEmail(joinDTO.getUser_email())  |  v(이메일 중복 확인)  |  v비밀번호 암호화  |  vJoinRegisterDTO에 암호화된 비밀번호 설정  |  vUserEntity.createUserEntity(joinDTO)  |  vUserEntity 객체 생성  |  vuserRepository.save(user)  |  v데이터베이스에 UserEntity 저장 1. JoinRegisterDTOJoinRegisterDTO 클래스는 회원가입 시 사용자..