本文共 876 字,大约阅读时间需要 2 分钟。
fastjson就是自定义json格式,字体大小等等1.在application启动方法中配置
@Overridepublic void configureMessageConverters(List2.在pojo里需要自定义json的地方加上注解> converters) { super.configureMessageConverters(converters); //定义一个convert转换消息的对象 FastJsonHttpMessageConverter fastConverter = new FastJsonHttpMessageConverter(); //添加fastjson配置信息 FastJsonConfig fastJsonConfig = new FastJsonConfig(); fastJsonConfig.setSerializerFeatures(PrettyFormat); //在convert中添加配置信息 fastConverter.setFastJsonConfig(fastJsonConfig); //将fastConverter添加到converters中 converters.add(fastConverter);}
@JSONField(format = "yyyy-MM-dd HH:mm")private Date cretedTime;运行结果: { "cretedTime":"2017-03-18 15:06", "id":1, "name":"xxx" }
实例2://不在页面显示该json数据
@JSONField(serialize = false)private String remarsk;