Building a RESTful Web Service :: Learn how to create a RESTful web service with Spring. :: spring-boot http://spring.io/guides/gs/rest-service/

Saying.java 297B

12345678910111213141516171819202122
  1. package org.springframework.hello;
  2. public class Saying {
  3. private final long id;
  4. private final String content;
  5. public Saying(long id, String content) {
  6. this.id = id;
  7. this.content = content;
  8. }
  9. public long getId() {
  10. return id;
  11. }
  12. public String getContent() {
  13. return content;
  14. }
  15. }