菜鳥學SSH(一)——Struts實現簡單登入(附原始碼)

劉水鏡發表於2013-10-07

從今天開始,一起跟各位聊聊java的三大框架——SSH。先從Struts開始說起,Struts對MVC進行了很好的封裝,使用Struts的目的是為了幫助我們減少在運用MVC設計模型來開發Web應用的時間。如果我們想混合使用Servlets和JSP的優點來建立可擴充套件的應用,struts是一個不錯的選擇。今天通過一個簡單的例子來說說Struts。


登入頁面:

這裡面沒啥東西,主要就是將action命名成“.do”的形式,讓Struts通過配置檔案來執行相應操作。

 

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>Insert title here</title>
</head>
<body>
    <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>

 

PS:表單中的name值必須跟對應的actionform的get、set屬性一致。

 

web.xml:

它的作用就是告訴Struts它的配置檔案(struts-config.xml)在哪,讓Struts可以找到,還有執行的動作(.do),還有載入順序之類的。

 

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" 
    xmlns="http://java.sun.com/xml/ns/j2ee" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
  <welcome-file-list>
    <welcome-file>login.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>
    <load-on-startup>2</load-on-startup>
  </servlet>


  <!-- Standard Action Servlet Mapping -->
  <servlet-mapping>
    <servlet-name>action</servlet-name>
    <url-pattern>*.do</url-pattern>
  </servlet-mapping>  
</web-app>

 



 

struts-config.xml:

從名字上就能看出來,這是Struts的配置檔案。form-bean用來接收提交的表單資料,action-mappings用來執行相應的動作。

 

<?xml version="1.0" encoding="ISO-8859-1" ?>

<!DOCTYPE struts-config PUBLIC
          "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
          "http://jakarta.apache.org/struts/dtds/struts-config_1_2.dtd">

<struts-config>
    <form-beans>
        <form-bean name="loginForm" type="com.lsj.struts.LoginActionForm"/>
    </form-beans>
    
    <action-mappings>
        <action path="/login" 
                type="com.lsj.struts.LoginAction"
                name="loginForm"        
                scope="request"        
                >
            <forward name="success" path="/login_success.jsp" />
            <forward name="error" path="/login_error.jsp"/>        
        </action>
    </action-mappings>
</struts-config>

 



 

這個類就是用來處理使用者登入的業務邏輯

 

package com.lsj.struts;

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 {

    @Override
    public ActionForward execute(ActionMapping mapping, ActionForm form,
            HttpServletRequest request, HttpServletResponse response)
            throws Exception {
        
        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");
    }

}

 


通過上面這個簡單的小例項,大家可以清晰的看出,兩個配置檔案起到了一個很好的串聯作用。也正是因為有配置檔案,所以才是程式變得非常的靈活。這個小例子比較簡單,配置檔案承擔的責任不是很多,後面的東西會更多的用到配置檔案,體會就會更加的深刻了。最後為大家附上原始碼方便一起研究討論。

 



原始碼

相關文章