ssh框架學習筆記(1)

初次學習struts,之前做了一個小項目,對於struts的理解是要經過很多項目的歷練才能理解的更深入,這裏僅僅是實現了一個form表單提交的功能

開發步驟:

1.安裝struts jar包

2.編寫struts.xml文件

3.編寫action

4.編寫jsp頁面

5.配置web.xml


一:struts配置文件如下,注意配置文件的名字不能亂取,不然會報錯,找不到配置文件,一定要取名爲struts.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="default" namespace="" extends="struts-default">
    <action name="life" class="Action.life">
      <result name="success">/success.jsp</result>
      <result name="error">/error.jsp</result>
    </action>                
</package>
</struts>
這裏配置了pachage name屬性可以爲struts或者default或者其他名字,namespace爲url裏action前面的url名字,取自struts默認的容器
二:然後編寫一個登錄action,代碼如下:

package Action;

import com.opensymphony.xwork2.ActionSupport;

public class life extends ActionSupport{
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	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;
	}
	public String getMessage() {
		return message;
	}
	public void setMessage(String message) {
		this.message = message;
	}
	private String message;//信息
	public String execute() throws Exception{
		try{
			if(username.equals("")||password.equals(""))
			{
				this.setMessage("用戶名或密碼爲空,請重新輸入");
				return "error";
			}
			else if(!username.equals("wulonghui"))
			{
				this.setMessage("用戶名不存在");
				return "error";
			}
			else if(!password.equals("123456"))
			{
				this.setMessage("密碼錯誤");
				return "error";
			}
			else
			{
				this.setMessage("登錄成功");
				return "success";
			}
		}catch(Exception e)
		{
			e.printStackTrace();
			return "error";
		}
	}
}
這裏對登錄用戶名和密碼進行了驗證

三:編寫相應的jsp頁面,success.jsp和error.jsp

success.jsp

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>返回成功頁面</title>
    
	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->

  </head>
  
  <body>
  ${message}
  </body>
</html>

error.jsp

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'error.jsp' starting page</title>
    
	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->

  </head>
  
  <body>
    ${message} <br>
  </body>
</html>
index.jsp(登錄界面顯示)
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'index.jsp' starting page</title>
	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->
  </head>
  
  <body><%--
  form表單提交
  --%><form action="life.action" method="post">
   <table>
     <tr>
       <td>用戶名:<input name="username" type="text"/></td>
       <td>密碼:<input name="password" type="password"/></td>
     </tr>
     <tr>
       <td><input type="submit" value="提交"/></td>
       <td><input type="reset"  value="重置"/></td>
     </tr>
   </table>
   </form>
  </body>
</html>
四:web.xml配置

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" 
	xmlns="http://java.sun.com/xml/ns/javaee" 
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
	http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
  <display-name></display-name>
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
  <filter>
    <filter-name>struts2</filter-name>
    <filter-class> org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter  </filter-class>
  </filter>
  <filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>*.action</url-pattern>
  </filter-mapping>
</web-app>

ok,整個工程搭建完成



發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章