1.首先下載Struts2 必要的包(大家可以到我的云盤直接下載 struts2 必要包 如果失效了叶洞,大家也可以自行下載童芹,我會在下面放一張所需包的圖片)
2.然后在 eclipse 中創(chuàng)建一個 動態(tài)web工程
3.然后大家把之前的下載的包全部拷貝到 WEBContent/WEB-INF/lib/
這個目錄下面揽乱。(注意:如果你是在我云盤中下載的赎离,其中有兩個文件web.xml 和 struts.xml 不用拷貝到 lib目錄下面剂买,這兩個文件后面會用到
)
4.然后在 WEB-INF 目錄下面生成一個 web.xml 文件(當(dāng)然你也可以直接將我的文件拷貝到該目錄下)贱呐,如果你是自己生成的,那么你就將下面的代碼拷貝到這個文件中
<?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">
<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-app>
當(dāng)啟動一個web項(xiàng)目時届惋,web容器(這里指tomcat)會去讀取他的配置文件 web.xml髓帽,上面的代碼表示可以攔截到所有的 url 請求。
5.在 java Resources/src/
目錄下生成一個 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" extends="struts-default" namespace="/">
<action name="login" class="han.LoginAction">
<result name="success">success.jsp</result>
<result name="error">error.jsp</result>
</action>
</package>
</struts>
上面代碼的意思就是 攔截到有一個
login.action
的請求郑藏,因?yàn)槲覀冊诘卿涰撁胬锩娴?action 中寫的 login,所以攔截器會攔截到這個請求瘩欺,然后執(zhí)行han
包下面的LoginAction
類中的execute
方法必盖,根據(jù)這個方法返回的字符串來決定跳轉(zhuǎn)到哪一個頁面(現(xiàn)在我們還沒有創(chuàng)建han
包,它會在后面創(chuàng)建)
6.這時基本把struts2 的環(huán)境給配置好了俱饿。
7.在 WebContent/
目錄下生成三個 jsp 文件(注意:不要把jsp文件放到 META-INF 和 WEB-INF
下面了)歌粥,以下是三個jsp文件:
loginForm.jsp
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title><s:text name="loginPage"/></title>
</head>
<body>
<s:form action="login">
<s:textfield name="username" key="user" />
<s:textfield name="password" key="pass" />
<s:submit key="login" value="submit" />
</s:form>
</body>
</html>
不用管
<s:textfield.../>
這個標(biāo)簽是什么意思,為什么與 html 標(biāo)簽不同拍埠,因?yàn)檫@時 struts2 特有的標(biāo)簽
error.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
wow something wrong
</body>
</html>
success.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
this is successful page
</body>
</html>
8.在 src
目錄下生成一個 han
包(這個包名隨便失驶,只是我這個例子中使用的是這個包而已,大家可以自行取名枣购,但是相應(yīng)在 struts 中 action 的class 也要改變)嬉探,在這個包下面新建一個 LoginAction
類,這個類繼承自 ActionSupport
,并且重寫 execute
方法棉圈,代碼如下;
package han;
import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;
public class LoginAction extends ActionSupport {
//定義封裝請求參數(shù)的用戶名和密碼
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 LoginAction() {
}
//定義處理用戶請求的 execute方法涩堤,這個方法會被程序自動調(diào)用
public String execute() throws Exception {
//當(dāng)用戶名與密碼都為 123 的時候,返回成功字符串分瘾,否則返回 錯誤字符串
if(getUsername().equals("123") && getPassword().equals("123")){
System.out.println(5656);
ActionContext.getContext().getSession().put("user", getUsername());
System.out.println(3344);
return SUCCESS;
}
return ERROR;
}
}
9.這時基本上已經(jīng)完成了胎围,然后右鍵 loginForm.jsp
,運(yùn)行run as
命令德召,啟動服務(wù)器痊远,進(jìn)入 登錄頁面,如果用戶名和密碼都輸入 123氏捞,那么進(jìn)入 success.jsp
頁面碧聪,否則進(jìn)入error.jsp
頁面。