FastJson的⽇期转化格式之多种配置⽅式
FastJson的⽇期转化格式之多种配置⽅式
FastJson默认的其转换格式未yyyy-MM-dd HH:mm:ss,但是在实际开发中,有时对于⽇期的输出格式还是以年⽉⽇(yyyy-MM-dd)居多,那么我们想要配置成这样的⽇期格式(yyyy-MM-dd)需要怎么做呢?
1、 配置FastJson消息转化器——FastJsonHttpMessageConverter
在l中配置
<!--配置FastJson的消息转化器 —— FastJsonHttpMessageConverter -->
<mvc:annotation-driven>
<mvc:message-converters>
<bean class="com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter">
<property name="features">
<list>
<!--输出Date的⽇期转化器-->
<value>WriteDateUseDateFormat</value>
</list>
</property>
fastjson怎么用</bean>
</mvc:message-converters>
</mvc:annotation-driven>
2、使⽤@JSONField注解⽅式
@JSONField(format="yyyy-MM-dd HH:mm:ss")
private Date time;
3、直接在⽅法内部加⼊
JSONObject.DEFFAULT_DATE_FORMAT="yyyy-MM-dd";//设置⽇期格式
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论