Develop board

This commit is contained in:
kimyonghwa
2019-05-09 13:56:27 +09:00
parent 5f1bd9fdcc
commit dac4f282e3
12 changed files with 206 additions and 6 deletions

View File

@@ -18,7 +18,8 @@ public class CustomAuthenticationEntryPoint implements AuthenticationEntryPoint
@Override
public void commence(HttpServletRequest request, HttpServletResponse response, AuthenticationException ex) throws IOException,
ServletException {
RequestDispatcher dispatcher = request.getRequestDispatcher("/exception/entrypoint");
dispatcher.forward(request, response);
// RequestDispatcher dispatcher = request.getRequestDispatcher("/exception/entrypoint");
// dispatcher.forward(request, response);
response.sendRedirect("/exception/entrypoint");
}
}