私は春のMVCを使用しています呼び出され、私は、コントローラで次のような方法がないされています Spring MVCの:コントローラのメソッドは
@RequestMapping(value = {"/web", "/web/"})
public void redirectToIndexUi(HttpServletRequest request, HttpServletResponse response) {
try {
//some condition
response.sendRedirect(request.getContextPath() + "/ui/index.html");
} catch (IOException ex) {
LOGGER.error("IOException is thrown while trying to redirect to index.html page.", ex);
}
}
ユーザーは、以下のURL http://localhost:8080/myapp/web/ redirectToIndexUi方法に入る
が呼び出されますが、この場合、 http://localhost:8080/myapp/web/index.html redirectToIndexUiメソッドは呼び出されません。理由は何でしょうか?
あなたは本当にそれが無限のリダイレクトループにつながるので、それが好きではありません! –