spring-boot/spring-bootstrap-cli/samples/web.groovy
2013-04-24 16:09:17 +01:00

24 lines
259 B
Groovy

@Controller
class Example {
@Autowired
private MyService myService;
@RequestMapping("/")
@ResponseBody
public String helloWorld() {
return myService.sayWorld();
}
}
@Service
class MyService {
public String sayWorld() {
return "World!";
}
}