筆記—初次使用Struts2.5.17框架
阿新 • • 發佈:2018-12-13
這個版本是目前(2018)最新版,先到官網
點選Full Distribution下載,然後解壓到自己想要的一個目錄下,:接著可以下載一個min版本(截圖第三個)的,這個裡面有我們需要的的基本包。
第一步:建立一個WEB動態工程。
第二步:導包,把剛剛下載的基本包匯入到WE-BINF的lib目錄裡
第三步:建立一個action 類
first.java
package mypackage; import com.opensymphony.xwork2.ActionSupport; public class first extends ActionSupport { /** * */ private static final long serialVersionUID = 1L; public String execute() throws Exception{ System.out.println("執行Action"); return SUCCESS; } }
第四步:建立檢視 first.jsp
<%@page language="java" contentType="text/html;charset=UTF-8" pageEncoding="UTF-8" import = "javax.*"%>
<body>
第一個Struts2程式
</body>
第五步:配置Struts.xml檔案,該檔案放在src下即可
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.5//EN" "http://struts.apache.org/dtds/struts-2.5.dtd"> <struts> <constant name="struts.devMode" value="true" /> <package name = "default" namespace = "/" extends = "struts-default"> <action name="first" class = "mypackage.first" > <result>/first.jsp</result> </action> </package> </struts>
注意這個版本下一定要新增 <constant name="struts.devMode" value="true" />
第六步:建立URL action
index.jsp
<%@page language="java" contentType="text/html;charset=UTF-8" pageEncoding="UTF-8" import = "javax.*"%> <html> <head><title>first Struts</title></head> <body> <form action="first" method="POST"> <input type = "submit" value = "登入"> </form> </body> </html>
第七步:配置web.xml檔案
利用eclipse建立的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_4_0.xsd" id="WebApp_ID" version="4.0">
<display-name>Struts2</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>
</web-app>
我們新增一個過濾器,結果如下
<?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_4_0.xsd" id="WebApp_ID" version="4.0">
<display-name>Struts2</display-name>
<filter>
<filter-name>Struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.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>