spring-boot/spring-bootstrap-cli/samples/app.groovy
2013-04-25 10:18:32 +01:00

24 lines
288 B
Groovy

package org.test
@Component
class Example implements CommandLineRunner {
@Autowired
private MyService myService;
public void run(String... args) {
print "Hello " + this.myService.sayWorld();
}
}
@Service
class MyService {
public String sayWorld() {
return "World!";
}
}