2peopledesu

2peopledesu

For the future

Security

Spring Security flow

1. 사용자 입력 인증 정보 (User Entered Credentials) 사용자가 제공하는 인증 정보는 로그인 과정의 첫 번째 단계입니다. 일반적으로 사용자 이름과 비밀번호가 포함됩니다. public class LoginRequest { private String username; private String password; // getters and setters } 2. 인증 필터 (Authentication Filter) 인증 필터는 사용자가 입력한 인증 정보를 필터링하고, Authentication 객체를 생성하는 역할을
3 min read