sturts1中的Action 子類

2021-06-14 09:55:12 字數 827 閱讀 5907

action

org.apache.struts.action.actionservlet

config

/web-inf/struts-config.xml

config/model1

/web-inf/struts-config-model1.xml

config/model2

/web-inf/struts-config-model2.xml

config/model3

/web-inf/struts-config-model3.xml

主要 以上的 prefix 和 page 分別指定的是配置檔案後面的別名和指定頁面的url

org.apache.struts.actions.forwardaction"parameter="/web-inf/views/system/role-input.jsp"/>

forward="/web-inf/views/system/user-input.jsp"/>

以上**可以省去那些只做**的action類 直接通過配置檔案跳轉到指定的jsp 頁面。

以上**是將指定的jsp頁面包含在配置檔案的jsp中進行組合

no.4 dispatchaction

path="/list" name="roleform"

type="org.struts.www.web.action.listaction" validate="false">

name="list" path="/web-inf/form/list.jsp" />

name="jstl" path="/web-inf/form/jstl.jsp" />

對於sturts2中的標籤

在沒有使用struts2 的時候可以使用 el來進行 url傳參。而在 struts2 中不推薦使用 el 其實在 struts2.0.0.11 之後就不再支援el 而推薦使用功能更為強大的 ognl 表示式語言。那麼怎麼使用 ognl 實現url傳參?就是解決這一問題的標籤 標籤一般和超連結 一起...

學習筆記 struts1中action的使用方法

1.完整的action name someform input somejsp.jsp 首先,actionservlet接收到請求後,取得action類例項,呼叫execute 方法 然後根據返回的actionforward在配置中找forward,forward到指定的uri或action。這樣做...

action標籤中method 1 怎麼理解?

其實用到method 的時候,相應的前面的action是要出現 萬用字元來搭配的。比如乙個小例子 在對應的jsp中 那麼struts會將user userlogin2這個action按照user 的格式解析,把 號對應位置的字串取出來,放到method 這個中括號裡替代數字的位置,1就是指第乙個 號...