You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<version>{see https://search.maven.org/search?q=a:spring-boot-operator-framework-starter for latest version}</version>
125
+
</dependency>
126
+
```
127
+
128
+
Create an Application
129
+
```java
130
+
@SpringBootApplication
131
+
publicclassApplication {
132
+
publicstaticvoidmain(String[] args) {
133
+
SpringApplication.run(Application.class, args);
134
+
}
135
+
}
136
+
```
137
+
138
+
And add Spring's `@Service` annotation to your controller classes so they will be automatically registered as resource controllers.
139
+
140
+
The Operator's Spring Boot integration leverages [Spring's configuration mechanisms](https://docs.spring.io/spring-boot/docs/1.0.1.RELEASE/reference/html/boot-features-external-config.html) to configure
0 commit comments