じゃあ、そろそろ本格的にサンプルでも(3)

後は jsp ファイルを3つ用意するだけ。

loginSuccess.jsp

<%@ page contentType = "text/html;charset=Windows-31J" %>
<html>
<head>
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html;charset=Windows-31J">
<meta HTTP-EQUIV="Content-Language" CONTENT="ja">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
</head>
<body>
ログイン成功、栄光を君に。
</body>
</html>

rejectUser.jsp

<%@ page contentType = "text/html;charset=Windows-31J" %>
<html>
<head>
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html;charset=Windows-31J">
<meta HTTP-EQUIV="Content-Language" CONTENT="ja">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
</head>
<body>
Conan the future boy is the best animation in the world.<br>
You see ?
</body>
</html>

最後に Login.jsp を、これ結構難しいんだよね。

Login.jsp

<%@page contentType="text/html; charset=Windows-31J"%>
<%@taglib uri="/tags/struts-html" prefix="html"%>

<html:html>
<head>
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html;charset=Windows-31J">
<meta HTTP-EQUIV="Content-Language" CONTENT="ja">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
</head>
<body>
<html:form action="/Login">
名前:<html:text property="userID"/><br>
パスワード:<html:text property="password"/><br>
<html:submit property="submit" value="ログイン"/>
</html:form>
</body>
</html:html>

よし、これで部品は揃った BON VOYAGE !