>  기사  >  Java  >  로그인 기능을 구현하기 위한 struts1의 코드 예제

로그인 기능을 구현하기 위한 struts1의 코드 예제

Y2J
Y2J원래의
2017-04-28 09:51:241430검색

이 글은 주로 struts1에서 구현한 간단한 로그인 기능의 예를 소개하고 있습니다.(소스코드 첨부) 편집자께서도 꽤 괜찮다고 생각하셔서 지금 공유하고 참고용으로 올려드리겠습니다. 편집기를 따라 살펴보겠습니다.

Environment: MyEclipse 14

1 struts1 프레임워크 구성

MyEclipse에서 새 웹 프로젝트를 만들고 이름을 지정합니다. struts1_login.이번에는 빈 문서이므로 스크린샷을 찍지 않겠습니다. 그런 다음 프로젝트를 마우스 오른쪽 버튼으로 클릭하고 myeclipse를 선택하고 struts 기능 추가

Apache Struts (1.x)Facet 설치 클릭

다음 클릭

*.do를 선택하고 변경 프로젝트와 관련된 패키지 이름입니다. 예를 들어 내 패키지 이름은 com.lichang.struts1

다음을 클릭하세요.

완료하려면 클릭하세요. WEB -INF

아래에 추가 struts-config.xml 파일이 있습니다. 위는 myeclipse가 프레임워크를 추가하는 데 도움을 주는 일반적인 프로세스입니다. 프로젝트의 전체적인 구조는 다음과 같습니다.

이 시점에서 우리의 struts1 프레임워크는 완성되었고 2 이를 구현하기 위한 프로그래밍을 시작합니다.

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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.