Files
spring-boot/spring-bootstrap-cli/samples/web.groovy
2013-04-24 10:02:07 +01:00

25 lines
333 B
Groovy

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