formatted according to eugen's formatter.
This commit is contained in:
parent
d100f84ea9
commit
1c13d2ccf9
|
@ -2,6 +2,7 @@ package com.baeldung.spring.controller;
|
||||||
|
|
||||||
import javax.servlet.http.HttpServletRequest;
|
import javax.servlet.http.HttpServletRequest;
|
||||||
|
|
||||||
|
import org.springframework.http.converter.xml.MarshallingHttpMessageConverter;
|
||||||
import org.springframework.stereotype.Controller;
|
import org.springframework.stereotype.Controller;
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
import org.springframework.web.bind.annotation.RequestMethod;
|
import org.springframework.web.bind.annotation.RequestMethod;
|
||||||
|
@ -16,7 +17,7 @@ public class ErrorController {
|
||||||
}
|
}
|
||||||
|
|
||||||
@RequestMapping(value = "errors", method = RequestMethod.GET)
|
@RequestMapping(value = "errors", method = RequestMethod.GET)
|
||||||
public ModelAndView renderErrorPages(HttpServletRequest httpRequest) {
|
public ModelAndView renderErrorPage(HttpServletRequest httpRequest) {
|
||||||
ModelAndView errorPage = new ModelAndView("errorPage");
|
ModelAndView errorPage = new ModelAndView("errorPage");
|
||||||
String errorMsg = "";
|
String errorMsg = "";
|
||||||
int httpErrorCode = getErrorCode(httpRequest);
|
int httpErrorCode = getErrorCode(httpRequest);
|
||||||
|
@ -46,6 +47,7 @@ public class ErrorController {
|
||||||
}
|
}
|
||||||
|
|
||||||
private int getErrorCode(HttpServletRequest httpRequest) {
|
private int getErrorCode(HttpServletRequest httpRequest) {
|
||||||
return (Integer) httpRequest.getAttribute("javax.servlet.error.status_code");
|
return (Integer) httpRequest
|
||||||
|
.getAttribute("javax.servlet.error.status_code");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +1,11 @@
|
||||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
||||||
<%@ page session="false" %>
|
<%@ page session="false"%>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Home</title>
|
<title>Home</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>
|
<h1>${errorMsg}</h1>
|
||||||
${errorMsg}
|
|
||||||
</h1>
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -44,8 +44,6 @@
|
||||||
</welcome-file-list>
|
</welcome-file-list>
|
||||||
|
|
||||||
<error-page>
|
<error-page>
|
||||||
<location>
|
<location>/errors</location>
|
||||||
/errors
|
|
||||||
</location>
|
|
||||||
</error-page>
|
</error-page>
|
||||||
</web-app>
|
</web-app>
|
Loading…
Reference in New Issue