一丶url :localhost:8080/StudentSystem/role_list.action?username=kk
通过url传参数,只需要在请求的action类中添加一个相同的属性名,private String username,并且在类中定义属性的get()set()方法,在进行请求的时候会自动接收该属性。
二丶或者通过ServletActionContext获取//导入import org.apache.struts2.ServletActionContext
HttpServletRequest reqeust= ServletActionContext.getRequest();
String username=reqeust.getParameter("username");