目錄
1.動態方法的呼叫
第一種方式
第二種方式(萬用字元方式推薦使用)
struts2屬性的預設值(了解)
struts2配置的高階
定義乙個action,裡面有多個方法
package cn.ycsj.hiber.test;
public class danamicaction
public string delete()
public string update()
public string select()
}
在src/struts.xml配置action,或者在包下直接新建乙個struts.xml,在src下的struts.xml中新增
//引入其他struts配置檔案
然後再新建的cn/ycsj/hiber/test/struts.xml配置action 這樣防止主配置檔案看著臃腫
<?xml version="1.0" encoding="utf-8"?>
/hello.jsp
/hello.jsp
在struts2.5以後需要新增strict-method-invocation="false"
/welcome.htm在action中
method:execute
result name屬性:success
result type屬性 dispatcher
struts筆記 配置
配置檔案 1.在struts2中,啟動時會載入乙個struts.properties檔案中的配置 我們可在struts.xml中對這些預設配置進行修改 修改方式為 注意這些內容要寫在標籤之下,之前 2.開發中我們可有產生多個與struts.xml檔案一模一樣格式的配置檔案,供多個開發小組使用,在整合...
struts常量配置
struts.serve.static 是否只是靜態內容服務 struts.serve.static.browsercache 是否快取靜態內容 struts.enable.dynamicmethodinvocation 是否支援動態呼叫方法 struts.enable.slashesinactio...
struts配置原理
一 struts2 原理圖 二 struts原理圖講解 1 客戶端發來乙個httprequest的請求 2 這個請求進過一系列的過濾器 這些過濾器中有乙個叫做actioncontextcleanup的可選過濾器,這個過濾器對於struts2和其他框架的整合很有幫助,例如 sitemesh plugi...