struts2中后台传值给前台

2024-12-18 17:52:16
推荐回答(3个)
回答1:

在配置文件里配置:
action:
private String str;//也可以是实体类
public String test() throws Exception {
str = "测试";
return "sus";
}

配置文件:


/index.jsp



jsp页面:
${str}

这样就好

在action中创建实例,并且通过方法给实例赋值,然后返回任意String值作为标记,在配置文件中配置action,根据方法返回的String值来跳转指定jsp,跳转后action中的实例自动放到公共空间,在jsp页面直接通过el表达式调用就可以了,前提必须action中存在此字段,并且已实例化,要不然会报错的

回答2:

ServletActionContext获取 request ,使用request保存,可以在jsp中获取!

1、如:ServletActionContext.getRequest().setAttribute("user_comments_list", list);
2、获取:

回答3:

后台:request.setAttribute("name",value);
前台:request.getAttribute("name")