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

24 lines
363 B
Groovy

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