ページ

2014年12月20日土曜日

Seasarしてみるさー 6 - ログイン画面実装 -

簡単なログイン画面の実装

いたってシンプルなログイン画面を作ってみる。

・LoginAction
/**
 * ログインアクションクラス
 */
public class LoginAction {

@ActionForm
@Resource
protected LoginForm loginForm;
/**
* メインページ
* @return JSP
* @throws Exception 発生した例外
*/
@Execute(validator=false)
public String index() throws Exception {
return "index.jsp";
}
/**
* ログイン
* @return リダイレクトページ
* @throws Exception 発生した例外
*/
@Execute(validator=true, input="index.jsp")
public String login() throws Exception {
// ログイン処理
return "/register/input?redirect=true";
}

}

・index.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>
<h1>ログイン画面</h1>
<html:errors/>
<s:form>
ユーザ名 : <html:text property="name" /><br>
パスワード : <html:password property="password" /><br>
<s:submit value="ログイン" property="login" />
</s:form>
</body>


</html>

・LoginForm
/**
 * ログインフォームクラス
 */
public class LoginForm {

@Required
public String name;
@Required
public String password;

}

※LoginActionでLoginFormをDIする際に@ActionFormを付け忘れるとnameプロパティの
   セッターゲッターが見つかりません〜のエラーが発生する!!

・画面















すっごいシンプル^^;

0 件のコメント:

コメントを投稿