ログイン後にブラウザのCookieの値を設定したいと思います。 次のコードで成功したログインイベントを検出できました。Spring起動アプリケーションのApplicationListenerでhttprequestとhttpresponseを取得するには?
@Component
@Slf4j
public class LoginEventListener implements ApplicationListener<InteractiveAuthenticationSuccessEvent> {
@Override
public void onApplicationEvent(InteractiveAuthenticationSuccessEvent event) {
log.info("hahaha: " + event.toString());
}
}