この記事では主に struts1 で実装した簡易ログイン機能の例を紹介します(ソースコード添付)。エディターに従って見てみましょう。 環境: MyEclipse 14.
1. MyEclipse で新しい Web プロジェクトを作成し、struts1_login という名前を付けます。プロジェクトをクリック - >myeclipse を選択 ->Struts 機能の追加
上をクリックして Apache Struts (1.x) ファセットをインストール
次へをクリック
*.do を選択し、プロジェクトに関連するパッケージ名。たとえば、私のパッケージ名は com.lichang.struts1 です
「次へ」をクリックしてください
クリックして完了すると、WEB-INF の下に追加の struts-config.xml ファイルが作成されます
上記はlet myeclipse help フレームワークに参加する一般的なプロセス。プロジェクトの全体的な構造は次のとおりです:
この時点で、struts1 フレームワークが構築されており、それを実装するためのプログラミングを開始しました。
2 次に、それを実装するためのプログラミングを開始しました。
web.xml は次のとおりです:<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0"> <display-name>struts1_login</display-name> <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file>default.jsp</welcome-file> </welcome-file-list> <servlet> <servlet-name>action</servlet-name> <servlet-class>org.apache.struts.action.ActionServlet</servlet-class> <init-param> <param-name>config</param-name> <param-value>/WEB-INF/struts-config.xml</param-value> </init-param> <init-param> <param-name>debug</param-name> <param-value>3</param-value> </init-param> <init-param> <param-name>detail</param-name> <param-value>3</param-value> </init-param> <load-on-startup>0</load-on-startup> </servlet> <servlet-mapping> <servlet-name>action</servlet-name> <url-pattern>*.do</url-pattern> </servlet-mapping> </web-app>次に、struts.xml で LoginAction を構成します。 コードは次のとおりです。
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.3//EN" "http://struts.apache.org/dtds/struts-config_1_3.dtd"> <struts-config> <form-beans> <form-bean name="loginForm" type="com.lichang.struts1.LoginActionForm"/> </form-beans> <action-mappings> <!-- path:指定访问时的路径 type:指定Action所在的类(一般是:包名.类名) name:指定和哪个表单(和jsp中Javabean 差不多的东西)对应,该例中name就和com.lichang.struts1.LoginActionForm类对应--> <action path="/login" type="com.lichang.struts1.LoginAction" name="loginForm" scope="request" > <forward name="success" path="/login_success.jsp" /> <forward name="error" path="/login_error.jsp"/> </action> </action-mappings> <message-resources parameter="com.lichang.struts1.ApplicationResources" /> </struts-config>index.jsp コードは次のとおりです:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html style="text-align:center"> <head style="text-align:center"> <title>index page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <!-- <link rel="stylesheet" type="text/css" href="styles.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" > --> </head> <body style="text-align:center"> <form action="login.do" method="post"> 用户:<input type="text" name="username"><br> 密码:<input type="password" name="password"></br> <input type="submit" value="登录"> </form> </body> </html>login_error.jsp コードは次のとおりです:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>error page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <!-- <link rel="stylesheet" type="text/css" href="styles.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" > --> </head> <body> <%-- <%=request.getAttribute("msg") %> --%> ${msg } </body> </html>login_success.jsp コードは次のとおりです:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>success page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <!-- <link rel="stylesheet" type="text/css" href="styles.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" > --> </head> <body> ${username },登录成功 </body> </html>LoginAction.java コードは次のとおりです:
package com.lichang.struts1; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.struts.action.Action; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionForward; import org.apache.struts.action.ActionMapping; //这个类充当控制器 public class LoginAction extends Action { public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { //从actionForm中获取username和password LoginActionForm laf = (LoginActionForm)form; String username = laf.getUsername(); String password = laf.getPassword(); //调用业务逻辑类 UserManager userManager = new UserManager(); try { userManager.login(username, password); return mapping.findForward("success"); }catch(UserNotFoundException e) { e.printStackTrace(); request.setAttribute("msg", "用户不能找到,用户名称=" + username ); }catch(PasswordErrorException e) { e.printStackTrace(); request.setAttribute("msg", "密码错误"); } return mapping.findForward("error"); } }LoginActionForm.java コードは次のとおりです:
package com.lichang.struts1; import org.apache.struts.action.ActionForm; /** * * ActionForm(表单用于获取用户输入的数据,相当于jsp中的Javabean) * 不过sturts1在底层上实现了一些特别的方法以至于当Java程序员定义了Javabean并继承ActionForm并实现setXXX()方法时 * 用户表单中元素的值就被一一赋给我们自己定义的变量。如public void setUsername(String username)方法就可把form中username * 赋给username变量 * */ public class LoginActionForm extends ActionForm { private String username; private String password; public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } }UserManager.java コードは次のとおりです:
package com.lichang.struts1; //这个类就是用来处理用户登录的业务逻辑 public class UserManager { public void login(String username, String password) { if (!"admin".equals(username)) { throw new UserNotFoundException(); } if (!"admin".equals(password)) { throw new PasswordErrorException(); } } }UserNotFoundException.java コードは次のとおりです:
package com.lichang.struts1; public class UserNotFoundException extends RuntimeException { public UserNotFoundException() { // TODO Auto-generated constructor stub } public UserNotFoundException(String message) { super(message); // TODO Auto-generated constructor stub } public UserNotFoundException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } public UserNotFoundException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } }PasswordErrorException.java コードは次のとおりです:
package com.lichang.struts1; public class PasswordErrorException extends RuntimeException { public PasswordErrorException() { // TODO Auto-generated constructor stub } public PasswordErrorException(String message) { super(message); // TODO Auto-generated constructor stub } public PasswordErrorException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } public PasswordErrorException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } }実行中の部分のスクリーンショット
ログインインターフェイス
ユーザー名が存在しません
ソースコードのダウンロードアドレス: struts1_login_jb51 .rar
以上がログイン機能を実装する struts1 のコード例の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。