spring-boot/spring-boot-project/spring-boot-cli/samples/template.groovy
Andrey Kolchanov 097104584c Remove unnecessary semicolon
See gh-24628
2021-01-05 08:15:32 +01:00

25 lines
361 B
Groovy

package org.test
import static org.springframework.boot.groovy.GroovyTemplate.*
@Component
class Example implements CommandLineRunner {
@Autowired
private MyService myService
@Override
void run(String... args) {
print template("test.txt", ["message":myService.sayWorld()])
}
}
@Service
class MyService {
String sayWorld() {
return "World"
}
}