dreamail

From Homestar Runner Wiki

Revision as of 14:02, 17 June 2016 by 103.237.36.228 (Talk)
Jump to: navigation, search

package hello;

public class Greeting {

   private final long id;
   private final String content;
   public Greeting(long id, String content) {
       this.id = id;
       this.content = content;
   }
   public long getId() {
       return id;
   }
   public String getContent() {
       return content;
   }

}

As you see in steps below, Spring uses the Jackson JSON library to automatically marshal instances of type Greeting into JSON.
Personal tools