struts1 action 之间传值

阅读更多

action 到action 之间传值,

 

 

Java代码
  1. Stringpar= "参数" ;
  2. return new ActionForward( "/xx.do?parameter=" +par);
String par="参数";
return new ActionForward("/xx.do?parameter="+par);


用request.setAttribute()放的对象,用request.getParameter()当然取不到,要用rerquest.getAttribue()。
注意几点:
1、用request.setAttribute()和rerquest.getAttribue()的时候,action的redirect不能设为true。
2、尽量不使用scope="session"的formbean。
3、尽量不使用session.setAttribute()保存数据。
4、用url?p1=v1这种方式只能传递字符串,而且要注意编码问题。

 

转载地址:http://mefly.javaeye.com/blog/672019

你可能感兴趣的:(struts)