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"); } }
'Spring' 카테고리의 다른 글
JSTL Split을 이용하여 출력하기 (0) | 2024.07.15 |
---|---|
JSTL 문법 (1) | 2024.07.15 |
Spring - I/O + DB gallaryboard 제작 (0) | 2024.07.11 |
Spring - I/O 파일 업로드, 저장 (0) | 2024.07.11 |
Spring - 쿠폰 생성 프로세서 (0) | 2024.07.10 |