05. struts2中為Action屬性注入值

程式設計師修養院發表於2020-11-26

概述

  • struts2為Action中的屬性提供了依賴注入功能
  • 在struts2的配置檔案中,我們可以很方便地為Action中的屬性注入值。注意:屬性必須提供get,set方法。

配置

<action name="helloworld" class="com.liuyong666.action.HelloWorldAction">
    <param name="savePath">/resource</param>
    <result name="success">/WEB-INF/page/hello.jsp</result>
</action>

對應類中的變化

public class HelloWorldAction{
      private String savePath;

      public String getSavePath() {
          return savePath;
      }
      public void setSavePath(String savePath) {
          this.savePath = savePath;
      }
       ......
}

好處

  • 上面通過節點為action的savePath屬性注入“/resource”,可以再hello.jsp頁面獲取/resource
  • 為action注入屬性值應用於經常換的變數,這樣不用更換原始碼。
  • 比如該變數為使用該軟體公司的名稱

相關文章