struts2 注解方式返回json

用了struts2 0配置后,如何返回json?

首先action上,重新定义默认的@ParentPackage,改为@ParentPackage("abstract-struts") 

abstract-struts是自己在struts.xml里定义的一个package

然后在action上面定义result:
@Results({ @Result(name = "test", type = "json") })

然后在方法上,加上

@Action(value = "apiName", results = { @Result(type = "json",params = { "root",
"userList", "includeProperties", "userList*" }) })

然后方法里,return "test" 即可

这里有个问题没搞清楚,我把name="test",放到方法上面的result里返回,是失败的

可能因为我的action继承了CrudActionSupport,而不是默认的ActionSupport有关,暂时没去研究真正原因。


你可能感兴趣的:(struts2)