Struts2的问题
Struts2 在action中怎么在@Result中传递参数比如在@Result(name="index",location="index.html"),中我想根据变量把location设置成index1.html或者index2.html
public String a() throws Exception{
String a;
return "index";
}
应该怎么传递这个变量 --------------------编程问答-------------------- 不是很清楚你的意思,但是如果是在struts.xml配置文件中,<result name="success">${returnUrl}</result>是可以这样取值的。其中returnUrl为对应action中的属性,含有set/get方法。新手回答,若有不足,尽请原谅! --------------------编程问答-------------------- 问的不是很清楚,不过楼上说的挺好的 --------------------编程问答-------------------- 在注解中配置,想跳转到静态页面
补充:Java , Web 开发