fastjson其他常用方法

(1)@JSONField

     我们使用fastjson进行序列化的时候,默认情况下,都是使用属性的名称作为json中的key名称

     但是有时候我们需要序列化为其他的名称,@JSONField注解就是这个作用

    


import java.util.Date;

import com.alibaba.fastjson.annotation.JSONField;


public class Product {
	@JSONField(name = "productId")
	private long id;
	private String name;
	private double price;
	private Date gmtCreate;
	private Date gmtModifieDate;
	
        ....省略getter\setter
}
        序列化操作

	@Test
	public void test() {
		Product product = new Product();
		product.setId(1L);
		product.setName("testJson");
		product.setPrice(1.23);
		product.setGmtCreate(new Date());
		product.setGmtModifieDate(new Date());
		
		String jsonString = JSON.toJSONString(product);
		System.out.println(jsonString);
	}

            结果为:

{"gmtCreate":1446184823686,"gmtModifieDate":1446184823686,"name":"testJson","price":1.23,"productId":1}

(2)指定需要序列化的属性

     有时候我们可能不需要将所有的属性进行序列化,这个时候就需要

	public static void main(String[] args) {
		Product product = new Product();
		product.setId(1L);
		product.setName("testJson");
		product.setPrice(1.23);
		product.setGmtCreate(new Date());
		product.setGmtModifieDate(new Date());
		
		
		SimplePropertyPreFilter filter = new SimplePropertyPreFilter(Product.class, "productId","name");
		String result = JSON.toJSONString(product, filter);
		
		System.out.println(result);
	}
       结果为:

{"name":"testJson","productId":1}
            注意:使用了@JSONField注解!!







评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值