We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 423373b commit 3e68988Copy full SHA for 3e68988
documentation/spring-boot-docs/src/main/kotlin/org/springframework/boot/docs/io/restclient/httpservice/groups/MyApplication.kt
@@ -0,0 +1,14 @@
1
+package org.springframework.boot.docs.io.restclient.httpservice.groups
2
+
3
+import org.springframework.boot.autoconfigure.SpringBootApplication
4
+import org.springframework.boot.runApplication
5
+import org.springframework.web.service.registry.ImportHttpServices
6
7
+@SpringBootApplication
8
+@ImportHttpServices(group = "echo", basePackages = ["com.example.myclients"])
9
+class MyApplication
10
11
+fun main(args: Array<String>) {
12
+ runApplication<MyApplication>(*args)
13
+}
14
0 commit comments