Spring - 인증 과정 (첫 로그인 과정) 1. 클라이언트 요청 - 클라이언트가 `/api/auth/login` 엔드포인트로 AuthRequest(username, password)를 POST 요청2. 내장 Tomcat 서버 - Tomcat 서버가 요청을 처리하여 AuthController로 전달합3. AuthController - authenticate 호출 - AuthController는 AuthenticationManager를 사용해 인증을 시도 - `authenticate()`메서드에 `UsernamePasswordAuthenticationToken`을 전달하여 인증을 위임4. AuthenticationManager - AuthenticationManager는 사용자 인증을 ..