程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> Struts2 用action屬性接收參數

Struts2 用action屬性接收參數

編輯:關於JSP

Struts2 用action屬性接收參數


1、struts.xml

<struts>
 <constant name="struts.devMode" value="true"> 
 <constant name="struts.enable.DynamicMethodInvocation" value="true">
 <package name="user" extends="struts-default">                 
        <action name="user" class="com.wxh.action.UserAction">
            <result>/useraddsuccess.jsp</result>
        </action>         
</package>     
</constant></constant></struts>
2、UserAction.java
package com.wxh.action;
import com.opensymphony.xwork2.ActionSupport;
public class UserAction extends ActionSupport {	
	private static final long serialVersionUID = 1L;
	private String name; 
	private int age;
	public String add(){
		System.out.println("name="+name);
		System.out.println("age="+age);
		return SUCCESS;
	}
	public String getName(){
		return name;
	}
	public void setName(String name){
		this.name=name;
	}
	public int getAge() {
		return age;
	}
	public void setAge(int age) {
		this.age = age;
	}
}
3、index,jsp

添加用戶4 useraddsuccess.jsp

user add success						

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