- Boon 教程
- Boon - 主页
- Boon - 概述
- Boon - 环境设置
- 分析 JSON
- Boon - 转换为对象
- Boon - 转换为映射
- Boon - Source 代码
- 生成 JSON
- Boon - 从对象生成
- Boon - 从映射生成
- 日期处理
- Boon - 长整型到日期
- Boon - 字符串到日期
- Boon - 生成日期
- 注释
- Boon - @JsonIgnore
- Boon - @JsonInclude
- Boon - @JsonViews
- Boon - @JsonProperty
- Boon 实用资源
- Boon - 快速指南
- Boon - 实用资源
- Boon - 讨论
Boon - @JsonViews
@JsonViews 用于控制要序列化还是不序列化的值。
示例 - @JsonView
以下示例适用于 @JsonView −
import org.boon.json.JsonSerializer;
import org.boon.json.JsonSerializerFactory;
import org.boon.json.annotations.JsonViews;
public class BoonTester {
public static void main(String args[]) {
JsonSerializer serializerPublic = new JsonSerializerFactory()
.useAnnotations()
.setView( "public" )
.create();
JsonSerializer serializerInternal = new JsonSerializerFactory()
.useAnnotations()
.setView( "internal" )
.create();
Student student = new Student(1,"Mark", 20);
String jsonString = serializerPublic.serialize( student ).toString();
System.out.println(jsonString);
jsonString = serializerInternal.serialize( student ).toString();
System.out.println(jsonString);
}
}
class Student {
public int id;
public String name;
@JsonViews( ignoreWithViews = {"public"}, includeWithViews = {"internal"})
public int age;
Student(int id, String name, int age) {
this.id = id;
this.name = name;
this.age = age;
}
}
输出
我们将得到类似于以下的输出 −
{"id":1,"name":"Mark"}
{"id":1,"name":"Mark","age":20}
广告