1. Exception 예외처리 방법
-> 수업시간에 살짝만 알려주심, 원래 exception 만 모아두는 모듈이 따로 있음.
-> 다른 예외처리법도 많으니 참고만
@Controller
public class shop_main2 {
@ExceptionHandler(MissingServletRequestParameterException.class)
public void han(MissingServletRequestParameterException ex, HttpServletResponse res) throws Exception{
res.setContentType("text/html;charset=utf-8");
this.pw=res.getWriter();
this.pw.write("<script>"
+ "alert('올바른 접근 방법이 아닙니다.');"
+ "location.href='./gallery.do';"
+ "</script>");
this.pw.close();
System.out.println("error");
}
}