19 lines
725 B
Java
19 lines
725 B
Java
package ru.ldeloff.hedgehogcloud.config;
|
|
|
|
import org.springframework.security.core.Authentication;
|
|
import org.springframework.security.web.authentication.AuthenticationSuccessHandler;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
import javax.servlet.ServletException;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
import java.io.IOException;
|
|
|
|
@Component
|
|
public class AuthenticationSuccessUserHandler implements AuthenticationSuccessHandler {
|
|
@Override
|
|
public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response, Authentication authentication) throws IOException, ServletException {
|
|
response.sendRedirect("/files");
|
|
}
|
|
}
|