方法1 :利用Struts 2的支持的可配置结果,可以达到过滤器的效果。Action的处理结果配置支持正则表达式。
但是如果返回的对象是一个数组格式的Json数据。比如peson Bean中有对象persion1…person9,而我只要person1的json数据, 则可以用如下的正则表达式。
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<struts> <constant name= "struts.objectFactory" value= "spring" /> <include file= "struts-admin.xml" ></include> < package name= "default" extends = "json-default" > <action name= "person" class = "com.person.PersonAction" method= "view" > <result type= "json" > <param name= "includeProperties" > person/[/d+/]/.person1 </param>> </result> </action> </ package > </struts> |
excludeProperties拦截器的用法与此类同,如果拦截的仅仅是一个对象,如果拦截掉person Bean的整个对象。
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<struts> <constant name= "struts.objectFactory" value= "spring" /> <include file= "struts-admin.xml" ></include> < package name= "default" extends = "json-default" > <action name= "person" class = "com.person.PersonAction" method= "view" > <result type= "json" > <param name= "excludeProperties" > person </param>> </result> </action> </ package > </struts> |
方法2:需要注意的是,如果用JSON插件把返回结果定为JSON。而JSON的原理是在ACTION中的get方法都会序列化
所以前面是get的方法只要没指定不序列化,都会执行。 如果该方法一定要命名为get*(比如实现了什么接口), 那么可以在该方法的前面加注解声明该方法不做序列化。
注解的方式为:@JSON(serialize=false)
除此之外,JSON注释还支持如下几个域:
- serialize:设置是否序列化该属性
- deserialize:设置是否反序列化该属性。
- format:设置用于格式化输出、解析日期表单域的格式。例如”yyyy-MM-dd'T'HH:mm:ss”。
1
2
3
4
5
6
7
|
//使用注释语法来改变该属性序列化后的属性名 @JSON (name= "newName" ) public String getName() { return this .name; } |
需要引入 import org.apache.struts2.json.annotations.JSON;
1
2
3
4
5
6
7
8
9
|
@JSON (serialize= false ) public User getUser() { return this .User; } @JSON (format= "yyyy-MM-dd" ) public Date getStartDate() { return this .startDate; } |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://blog.csdn.net/fangaohua200/article/details/54566504