程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> jsp向struts傳值的三中方法,jspstruts傳三中

jsp向struts傳值的三中方法,jspstruts傳三中

編輯:JAVA綜合教程

jsp向struts傳值的三中方法,jspstruts傳三中


  • action中的屬性名稱與JSP中提交的name值一致

JSP中的表單

<formaction="login.action"method="post">

用戶名:<inputtype="text"name="username"/> <br/>

密碼: <inputtype="password"name="password"/><br/>

<inputtype="submit"value="登陸"/>

</form>

Action中的屬性

publicclassLoginActionextends ActionSupport {

private String username;

private String password;



public String getUsername() {

returnusername;

}

publicvoid setUsername(String username) {

this.username = username;

}

public String getPassword() {

returnpassword;

}

publicvoid setPassword(String password) {

this.password = password;

}
。。。。。。。。。。。。。。。

}

  • 使用一個VO類

JSP中的表單

<formaction="login.action"method="post">

用戶名:<inputtype="text"name="user.username"/> <br/>

密碼: <inputtype="password"name="user.password"/><br/>

<inputtype="submit"value="登陸"/>

</form>

 

LoginAction中的屬性改為user

publicclassLoginActionextends ActionSupport{

private User user;



public User getUser() {

returnuser;

}

publicvoid setUser(User user) {

this.user = user;

}

  • 使用Struts2中的ModelDriven數據模式

Action類要實現一個泛型接口

JSP中的表單

<formaction="login.action"method="post">

用戶名:<inputtype="text"name="username"/> <br/>

密碼: <inputtype="password"name="password"/><br/>

<inputtype="submit"value="登陸"/>

</form>

publicclassLoginActionextends ActionSupport implements ModelDriven<User> {

private User user = new User();

public User getModel() {

returnuser;

}

}

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved