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 |
Tags
- Graphic
- 오버로딩
- JSP
- OGNL
- Menu
- AWT
- struts2
- Java
- 에러페이지
- layout
- mybatis
- 배열
- 어노테이션
- 안드로이드
- 이클립스
- 예외처리
- oracle
- HTML
- 기본
- 국제화
- 전화걸기
- Android
- 메소드
- Eclips
- Spring
- 메서드
- paint
- 생성자
- 클래스
- JavaScript
Archives
- Today
- Total
note
Struts2 유효성 검사 본문
struts-ch4.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="ch4-4" namespace="/ch4" extends="struts-default">
<!-- 데이터 전송 -->
<action name="helloWorld3" class="com.ch4.action.HelloWorld3">
<interceptor-ref name="params" />
<result name="success">hello.jsp</result>
</action>
<!-- Action 인터페이스 사용 및 유효성 검사 -->
<action name="helloWorld4" class="com.ch4.action.HelloWorld4">
<interceptor-ref name="params" />
<result name="input">name4.jsp</result>
<result name="success">hello.jsp</result>
</action>
</package>
</struts>
name4.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>데이터 전송</title>
</head>
<body>
<font color="red">${message}</font>
<form action="helloWorld4.action">
<input type="text" name="name" value="${param.name}">
<input type="submit" value="전송">
</form>
</body>
</html>
HelloWorld4.java
package com.ch4.action;
import com.opensymphony.xwork2.Action;
public class HelloWorld4 implements Action{
private String message;
private String name;
@Override
public String execute() throws Exception {
//유효성 검사
if(name == null || "".equals(name) || "World".equals(name)){
message = "이름이 없거나 'World'라는 이름을 쓸 수 없습니다.";
return INPUT;
}
message = "Hello,"+name;
return SUCCESS;
}
public String getMessage() {
return message;
}
public void setName(String name) {
this.name = name;
}
}
ActionSupport를 사용하는게 더 바람직하다
'JSP > Struts2' 카테고리의 다른 글
| struts2 도메인 오브젝트 (0) | 2012.02.21 |
|---|---|
| Struts2 ActionSupport를 사용하여 유효성 검사(Interceptor) (1) | 2012.02.21 |
| Struts2 include 사용 (0) | 2012.02.21 |
| Struts2 와일드카드 디폴트 (0) | 2012.02.21 |
| struts2 default-action-ref (에러페이지) (0) | 2012.02.21 |