Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- paint
- layout
- 에러페이지
- 어노테이션
- oracle
- Graphic
- 오버로딩
- struts2
- AWT
- 예외처리
- 국제화
- JSP
- OGNL
- 전화걸기
- HTML
- 메서드
- mybatis
- Java
- 클래스
- Eclips
- Android
- 안드로이드
- 기본
- JavaScript
- Menu
- 배열
- 이클립스
- 메소드
- 생성자
- Spring
Archives
- Today
- Total
목록Interceptor (1)
note
Struts2 ActionSupport를 사용하여 유효성 검사(Interceptor)
extends ActionSupport를 해준뒤에 Override 및 Implements 자동완성으로 넣기 struts-ch4.xml hello.jsp name4.jsp hello.jsp name5.jsp hello.jsp HelloWorld5.javapackage com.ch4.action; import com.opensymphony.xwork2.ActionSupport; public class HelloWorld5 extends ActionSupport{ private String name; private String message; @Override public void validate() { if(name == null || "".equals(name) || "World".equals(name))..
JSP/Struts2
2012. 2. 21. 14:45