spring-boot/spring-boot-cli/samples/web.groovy

22 lines
257 B
Groovy
Raw Permalink Normal View History

2013-04-24 17:02:07 +08:00
@Controller
class Example {
@Autowired
private MyService myService;
@RequestMapping("/")
@ResponseBody
public String helloWorld() {
return myService.sayWorld();
}
}
@Service
class MyService {
public String sayWorld() {
return "World!";
}
}