国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Java > 正文

Struts2開發(fā)環(huán)境搭建 附簡單登錄功能實(shí)例

2019-11-26 13:31:47
字體:
供稿:網(wǎng)友

首先是搭建Struts2環(huán)境。

第一步 下載Struts2
去Struts官網(wǎng) http://struts.apache.org/ 下載Struts2組件。
截至目前,struts2最新版本為2.3.1.3,下載struts-2.3.16.3-all.zip,解壓,放著。

第二步 新建Web Project并導(dǎo)入jar包
在MyEclispe中新建Web Project,然后找到解壓的Struts2包,在里面apps文件夾下找到struts2-blank.war,解壓這個WAR文件,將里面WEB-INF/lib目錄下的jar文件全部復(fù)制到新建的Web Project的WebRoot/WEB-INF/lib目錄下。

第三步 配置web.xml
在項目的WebRoot/WEB-INF/目錄下找到web.xml文件,沒有就新建一個web.xml文件,在里面添加如下代碼:

<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>/*</url-pattern></filter-mapping>

下面給一個完整的web.xml文件的示例:

<?xml version="1.0" encoding="UTF-8"?><web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1"> <display-name>web1</display-name> <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>/*</url-pattern> </filter-mapping> <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></web-app>

第四步 配置struts.xml
在項目的src目錄下找到struts.xml文件,沒有就新建一個,里面代碼如下:

<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" "http://struts.apache.org/dtds/struts-2.3.dtd"><struts> <package name="main" extends="struts-default">  <!-- 在這里面配置action --> </package></struts>

到此,Struts2開發(fā)環(huán)境搭建完成。

下面演示一個登錄頁面實(shí)例。

第一步 修改Index.jsp
修改Index.jsp,做出登錄界面。
下面是index.jsp的代碼:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><!DOCTYPE HTML><html> <head> <title>登錄</title> </head>  <body> <form action="login" method="post"> 登錄<br /> 賬號:<input type="text" name="username" /><br /> 密碼:<input type="password" name="password" /><br /> <input type="submit" value="登錄" /> </form> </body></html>

下面是Index.jsp在瀏覽器中的效果:

第二步 編寫驗(yàn)證賬戶和密碼的類
新建LogAction類,讓其繼承com.opensymphony.xwork2.ActionSupport類,注意到index.jsp中兩個輸入框的name屬性分別是username和password,所以LogAction類必須包含下面兩個屬性:
private String username
private String password

而且必須寫出他們的get、set方法。

然后,編寫execute方法,在execute方法中驗(yàn)證賬號和密碼并返回String類型的結(jié)果,execute方法會在該Action類被調(diào)用的時候自動執(zhí)行。

下面是LogAction.java的完整代碼:

package com.lidi.struts.action;import com.opensymphony.xwork2.ActionSupport;public class LogAction extends ActionSupport { private static final long serialVersionUID = 1L; private String username;//賬號 private String password;//密碼  //getters & setters 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; }  /**  * execute方法會在該Action類被調(diào)用的時候自動執(zhí)行,  * 如果 賬號="admin"并且密碼="123456",就返回SUCCESS  * 否則返回ERROR  */ public String execute(){  if(username.equalsIgnoreCase("admin") && password.equalsIgnoreCase("123456")){   return SUCCESS;  }  else   return ERROR; }}

上面的返回SUCCESS和返回ERROR什么意思呢,后面再講。

第三步 配置struts.xml
第二步編寫了Action類,第三步將該Action配置到struts.xml中,打開struts.xml,在package標(biāo)簽中添加如下代碼:

<action name="login" class="com.lidi.struts.action.LogAction"> <result name="success">success.jsp</result> <result name="error">error.jsp</result></action>

action標(biāo)簽的name屬性為login,這個必須與index.jsp中form標(biāo)簽的action屬性一致,class屬性填寫LogAction類的全稱。

<result name="success">success.jsp</result> 這個標(biāo)簽的意思是當(dāng)LogAction類的execute方法返回SUCCESS時,頁面跳轉(zhuǎn)到success.jsp;同理,<result name="success">success.jsp</result> 這個標(biāo)簽的意思是當(dāng)LogAction類的execute方法返回ERROR時,頁面跳轉(zhuǎn)到error.jsp。

完整的struts.xml代碼如下:

<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" "http://struts.apache.org/dtds/struts-2.3.dtd"><struts> <package name="main" extends="struts-default">  <action name="login" class="com.lidi.struts.action.LogAction">   <result name="success">success.jsp</result>   <result name="error">error.jsp</result>  </action> </package></struts>

這里用到了success.jsp和error.jsp,在項目中新建這兩個文件,success.jsp表示登錄成功后的頁面,上面顯示登錄用的賬戶和密碼,error.jsp表示登錄失敗后的頁面,上面顯示錯誤提示就就好了,他們的代碼分別如下:
success.jsp

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><%@ taglib prefix="s" uri="/struts-tags"%><!DOCTYPE HTML><html> <head> <title>登陸成功</title> </head>  <body> 歡迎<s:property value="username" />,登錄成功!<br /> </body></html>

<%@ taglib prefix="s" uri="/struts-tags"%>表示引用struts標(biāo)簽庫
<s:property value="username" />是struts標(biāo)簽,用以顯示登錄頁面?zhèn)鬟f過來的賬號。

error.jsp

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><!DOCTYPE HTML><html> <head> <title>登錄失敗</title> </head>  <body> 登錄失敗!用戶名或密碼錯誤! </body></html>

第四步 運(yùn)行
配置struts.xml后要重啟下服務(wù)器,然后在瀏覽器中查看效果。
分別輸入賬號和密碼并登錄,如果賬號和密碼分別為admin和123456,頁面就會顯示
歡迎admin,登錄成功!
否則就會顯示
登錄失敗!用戶名或密碼錯誤!

第五步 程序運(yùn)行原理淺析
用戶填寫賬號密碼并點(diǎn)擊登錄后,瀏覽器會請求form標(biāo)簽action屬性里面的鏈接,也就是login。服務(wù)器中,過濾器攔截到login這個請求,就會查找struts.xml中name=login的action,再找到這個action的class屬性對應(yīng)的類,也就是com.lidi.struts.action.LogAction,然后實(shí)例化一個LogAction對象,并且把參數(shù)username和password分別賦給這個對象的username和passwrod屬性(這就是為什么LogAction類的兩個屬性名稱必須和index.jsp中兩個文本框的name屬性分別相同,并且必須添加他們的get和set方法),然后執(zhí)行這個對象的execute方法,并返回一個字符串,如果返回SUCCESS字符串,就查找struts.xml中對應(yīng)action的<result>標(biāo)簽中name屬性等于success的<result>標(biāo)簽,并將頁面轉(zhuǎn)到該標(biāo)簽里面配置的頁面success.jsp上。

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持武林網(wǎng)。

發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 正宁县| 四会市| 灯塔市| 磴口县| 肃北| 广水市| 墨竹工卡县| 沿河| 石柱| 岗巴县| 错那县| 简阳市| 桦南县| 葫芦岛市| 特克斯县| 海淀区| 集安市| 阜康市| 凌源市| 神木县| 余庆县| 中山市| 郁南县| 潍坊市| 融水| 沈丘县| 徐闻县| 巴青县| 东丰县| 沈阳市| 涞源县| 南充市| 沾化县| 德兴市| 东光县| 哈巴河县| 历史| 靖安县| 黔东| 垣曲县| 邹平县|