@RequestMapping("/testMyResponse")
public void testMyResponse(HttpServletResponse response) throws IOException {
response.getWriter().print("hello,response");
}
thows就是向上抛出异常,让调用者去处理。
@RequestMapping("/testMyResponse")
public void testMyResponse(HttpServletResponse response) throws IOException {
response.getWriter().print("hello,response");
}
thows就是向上抛出异常,让调用者去处理。