07 August 2013
Also, have you seen the amazing news? We just released Spring Boot, which makes it dead simple to do application development with Spring.
A working REST application (its entirety!) can fit in a single tweet! Here's a groovy-language @Controller
:
@Controller
class ThisWillActuallyRun {
@RequestMapping("/")
@ResponseBody
String home() {
return "Hello World!"
}
}