Skip to content

Instantly share code, notes, and snippets.

@writer0713
Created April 24, 2016 13:20
Show Gist options
  • Save writer0713/f42974afa1f2e1531687c5c67399fded to your computer and use it in GitHub Desktop.
Save writer0713/f42974afa1f2e1531687c5c67399fded to your computer and use it in GitHub Desktop.
package hello;
import java.util.concurrent.atomic.AtomicLong;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class GreetingController {
private static final String template = "Hello, %s!";
private final AtomicLong counter = new AtomicLong();
@RequestMapping("/greeting")
public Greeting greeting(@RequestParam(value="name", defaultValue="World") String name) {
return new Greeting(counter.incrementAndGet(),
String.format(template, name));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment