WIP:service
[demos/testing] / src / main / java / de / juplo / demo / DemoApplication.java
index 76f6fe4..88b890c 100644 (file)
@@ -1,12 +1,22 @@
 package de.juplo.demo;
 
+import org.springframework.beans.factory.annotation.Value;
 import org.springframework.boot.SpringApplication;
 import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.context.annotation.Bean;
+import org.springframework.web.reactive.function.client.WebClient;
 
 @SpringBootApplication
 public class DemoApplication {
 
-       public static void main(String[] args) {
+  @Bean
+  public RemoteContentService service(@Value("${remote.host}")String remoteHost)
+  {
+    return new RemoteContentService(WebClient.create(remoteHost));
+  }
+
+
+  public static void main(String[] args) {
                SpringApplication.run(DemoApplication.class, args);
        }