여기서 프로젝트를 시작해보자. 그리고 Building Restful Web Service 사이트에서 튜토리얼을 진행 해준다. Greeting Class package com.godcoder.myrest; 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; } } GreetingController Class package com.god..