/*
* 第三種方式:
* 這是與容器繫結servlet的方式,非ioc的,需要在execute方法中初始化
* 這裡關注乙個類servletactioncontext */
//public class loginaction extends actionsupport //
//public void setusername(string username) //
//public string getpassword() //
//public void setpassword(string password) //
//public string execute() else //
} //}
/* * 第四種方式:ioc
* 這是與容器繫結servlet的方式,ioc的,不需要在execute方法中初始化
* 這裡要實現兩個介面servletrequestaware,servletcontextaware */
前台:<
h1>
""登陸成功
h1>
普通屬性接收:
username:
<
s:property
value
="username"
/><
br>
password:
<
s:property
value
="password"
/><
br>
request屬性接收:$-----------
<
s:property
value
="#request.req"
/><
br>
session屬性接收
<
s:property
value
="#session.sess"
/><
br>
<
s:property
value
=/><
br> 返回
<
a href
="index.action"
>主頁a
>
Struts2學習筆記
1.不繼承,不介面 2.繼承actionsupport類 3.介面action介面 4.我們可以使用modeldriven模式 5.我們可以自己編寫bean進行struts2的擴充套件,但是 一般不需要,因為struts2的功能已經很強大了!6.我們可以將default.properties檔案中的...
Struts2學習筆記
structs修改後自動更新 action執行的時候並不一定要執行execute方法 method add user add success.jsp user add success.jsp 可以在配置檔案中配置action的時候用method 來指定執行哪個方法 user useradd 新增使用...
struts2學習筆記
xml 配置大都是通過 複製 貼上 修改 得到。其中此處 永遠是 url pattern url pattern struts.xml 內 action name hello action 一般用小寫。xml 內寫 時內自動提示設定 原始檔路徑不能有中文。此處複製了乙份dtd檔案到d myeclii...