如果struts.xml檔案中的action過多,在乙個檔案中定義,導致檔案過於臃腫.
我們通過標籤來引入多個配置檔案
file="login.xml">include>
file="system.xml">include>
繼續strtus2學習之旅(2)修改設定多個配置檔案
注意在配置檔案中不要忘了引入strtus約束
<?xml version="1.0" encoding="utf-8" ?>
name="default"
namespace="/"
extends="struts-default">
name="helloworld_*"
method=""
class="com.chb.action.helloworldaction">
/result.jspresult>
name="add">/.jspresult>
name="update">/.jspresult>
action>
package>
struts>
<?xml version="1.0" encoding="utf-8" ?>
file="helloworld.xml">
include>
struts>
Struts2學習筆記3
include 配置的action比較多的時候可以根據action的邏輯進行分包操作,就是命名多個struts.xml,在主要的struts.xml中新增include標籤,將其他邏輯的xml包含進來,配置如下 include file struts1.xml include intercerpto...
struts2 學習小記(3)
1 訪問web元素 1.前三者 依賴於容器 2.前三者 ioc 只用這種 3.後三者 依賴於容器 4.後三者 ioc 方法一 actioncontext方式 一般在action類的構造方法 或execute 方法中獲取。private map request private map session ...
struts2學習筆記 struts2的配置檔案
一 struts.xml定義bean的作用 1.建立該bean的例項,將該例項作為struts2框架的核心元件使用。2.bean包含的靜態方法需要乙個值注入。很方便地允許不建立某個類的例項,卻可以接受框架常量。通常需要設定static true 通常,當指定了type屬性時,該屬性不應該制定為tru...