mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-20 14:39:36 +00:00
Artemis seems to be a bit flakey which is causing sporadic build failures, for example due to an NPE in Artemis' code.
17 lines
155 B
Groovy
17 lines
155 B
Groovy
@Configuration
|
|
class App {
|
|
|
|
@Bean
|
|
MyService myService() {
|
|
return new MyService()
|
|
}
|
|
|
|
}
|
|
|
|
class MyService {
|
|
|
|
String sayWorld() {
|
|
return "World!"
|
|
}
|
|
|
|
} |