struts2Action的分模組配置

2021-07-25 12:37:23 字數 658 閱讀 4234

依據原則:不同的模組配置封裝到不同的package中

如果所有的< package>都配置在乙個struts.xml檔案裡面,必然會引起大家爭用這個配置檔案,因此,在實際開發中,通常都是乙個< package>放在乙個單獨的檔案中,比如叫struts-***.xml,最後由struts.xml來引用這些struts-***.xml。(通過include來引入各個單獨的模組配置檔案)

此時struts.xml的**示例如下:

<?xml version="1.0" encoding="utf-8" ?>

name="struts.devmode"

value="true" />

name="struts.locale"

value="zh_cn">

constant>

name="struts.i18n.encoding"

value="gb2312">

constant>

file="struts-***.xml">

include>

file="struts-***.xml">

include>

file="struts-***.xml">

include>

...struts>

struts2 action 配置方法

struts2 action幾乎完全吸收了xwork 的精華,近日學習struts 2,總結一下action的配製方法。首先看一下com.opensymphony.xwork2.action的介面宣告,action提供execute 方法,子類必須實現execute 方法。public inte c...

struts2 action中result引數詳解

chain 用來處理action鏈 com.opensymphony.xwork2.actionchainresult dispatcher 用來轉向頁面,通常處理jsp org.apache.struts2.dispatcher.servletdispatcherresult freemaker ...

Struts2 Action獲取Scope物件

方式 一 與servlet解耦合的非ioc方式 獲取的scope物件與容器無關,通過actioncontext獲取。loginaction 如下 package com.asm public class loginaction extends actionsupport 省略username的get...