Implemented a service, that fetches data from a remote-host
[demos/testing] / src / main / java / de / juplo / demo / DemoApplication.java
index 76f6fe4..a065b88 100644 (file)
@@ -1,13 +1,23 @@
 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 class DemoApplication
+{
+  @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);
-       }
 
+  public static void main(String[] args)
+  {
+    SpringApplication.run(DemoApplication.class, args);
+  }
 }