Spring3.1 format the Date when Json is returned

Source: Internet
Author: User

Step 1: Create the CustomObjectMapper class

/*** Solve the problem that the date format is displayed as a timestamp by default when spring MVC returns json using @ ResponseBody. Cooperation required
 
  
Use ** @ author hellostory * @ date 2013-10-31 04:17:52 */@ Component ("plugin") public class extends ObjectMapper {public customObjectMapper () {CustomSerializerFactory factory = new CustomSerializerFactory (); factory. addGenericMapping (Date. class, new JsonSerializer
  
   
() {@ Overridepublic void serialize (Date value, JsonGenerator jsonGenerator, SerializerProvider) throws IOException, JsonProcessingException {SimpleDateFormat sdf = new SimpleDateFormat ("yyyy-MM-dd HH: mm: ss "); jsonGenerator. writeString (sdf. format (value) ;}}); this. setSerializerFactory (factory );}}
  
 


Step 2: Configure as follows:

 
  
   
    
   
  
 

The effect is as follows:

Before formatting:


After formatting:




Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.