@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!"; } }