1. @RequestMapping 에 java.util.Date 받기.
http://linkedjava.blogspot.com/2011/06/spring-controller-with-date-object.html
2. JacksonMappper 에서 java.util.Date Serialize 하기
http://linkedjava.blogspot.com/2011/06/spring-controller-with-date-object.html
<error-page>
<error-code>404</error-code>
<location>/error/400.html</location>
</error-page>
등등등 상황별로 Error Page를 설정이 가능하다.
자세한 내용은 Oracle 홈페이지 를 참조 한다 :)
http://download.oracle.com/docs/cd/E13222_01/wls/docs81/webapp/web_xml.html#1017571
@RequestMapping(value = "/mywebapp/index.nhn", method = RequestMethod.GET)
public Model index(@ModelAttribute("searchItem") SearchItem searchItem, Model result,
HttpServletRequest request, HttpServletResponse response) throws Exception {
.....
throw new NoSuchRequestHandlingMethodException(request);
}