struts2入門教程一(環境搭建,基本案例實現)

來源:互聯網
上載者:User

  Struts2入門初步需掌握

1.struts2概述

2.struts2環境搭建(第一個struts2的應用程式)

3.struts.xml檔案配置詳解

4.struts2請求的URL的搜尋路徑的順序概述

5.struts2工作原理概述

6.struts2指定多個設定檔

7.struts2動態方法引動過程

8.使用萬用字元定義action

 

 

一:簡介

 

Struts 2是Struts的下一代產品,是在 struts 1和WebWork的技術基礎上進行了合并的全新的Struts 2架構。其全新的Struts 2的體繫結構與Struts 1的體繫結構差別巨大。Struts 2以WebWork為核心,採用攔截器的機制來處理使用者的請求,這樣的設計也使得商務邏輯控制器能夠與ServletAPI完全脫離開,所以Struts 2可以理解為WebWork的更新產品。雖然從Struts 1到Struts 2有著太大的變化,但是相對於WebWork,Struts 2的變化很小。

二:環境搭建

搭建Struts2環境時,我們一般需要做以下幾個步驟的工作:

1.找到開發Struts2應用需要使用到的jar檔案.

  下載官網:

http://struts.apache.org/download.cgi#struts221

解壓後:

  

開始學習使用依賴的最基本的jar包

2:編寫Struts2的設定檔

解壓其中一個案例在此目錄下找到struts.xml檔案先拷貝到項目的src下。再對起進行修改。

刪除剩餘如下代碼:

 

<?xml version="1.0"encoding="UTF-8" ?><!DOCTYPE struts PUBLIC   "-//Apache Software Foundation//DTD StrutsConfiguration 2.3//EN"   "http://struts.apache.org/dtds/struts-2.3.dtd"> <struts> </struts>

 

3:在web.xml中加入Struts2MVC架構啟動配置

 

 將如下代碼拷貝至 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>

 

三:基本案例:----------HellowWorld

 

java類在src下

package action; public classHelloAction {   private String message;    public String getMessage() {      return message;   }    public void setMessage(Stringmessage) {      this.message = message;   }     public String execute(){           this.message="我的第一個 struts程式";              return "success";        }       public String other(){      this.message="第二個方法";      return "success";   } }


配置struts2 檔案------Struts.xml代碼:

<?xml version="1.0"encoding="UTF-8" ?><!DOCTYPE struts PUBLIC   "-//Apache Software Foundation//DTD StrutsConfiguration 2.3//EN"   "http://struts.apache.org/dtds/struts-2.3.dtd"> <struts><!-- 設定常量實現動態調用 -->   <constant name="struts.enable.DynamicMethodInvocation"value="true" />   <!-- 名字必須唯一對應模組 -->   <package name="hello" namespace="/hello"extends="struts-default">      <action name="test" class="action.HelloAction"method="execute">      <!--為了安全將其放在、WEB-INF/pages 不明白的也可放在webRoot  根目錄下-->   <result name="success">            /WEB-INF/pages/index.jsp         </result>      </action>   </package> </struts>


運行結果


  四:注意:

 

 

 預設值

如果沒有為action指定class,預設是ActionSupport。

2>如果沒有為action指定method,預設執行action中的execute() 方法。

3>如果沒有指定result的name屬性,預設值為success。

 http:localhost:連接埠/內容路徑/包名/action名稱!方法名

 

 

 

動態方法引動過程:

大家可以發現在上面的java類中還有一個方法------other()

調用方式如下:

 

提示,這種調用方式會帶來安全隱患!

使用最新struts2(2.3.15.2),不能使用DMI動態調用方法

 

<!-- 設定常量實現動態調用 --><constant name="struts.enable.DynamicMethodInvocation"value="true" />

 

萬用字元使用:

 將struts.xml檔案的 action修改

<!--  萬用字元的使用 -->            <action name="test_*"class="action.HelloAction"method="{1}">

 

 訪問方式為包名+命名空間+test_+方法名

 

以上內容為個人總結,若有個別遺漏錯誤望大家給予改正。

 大家有一些好的想法或意見,可以相互探討。

 QQ:897982714

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.