Created
March 26, 2020 21:22
-
-
Save ksurendra/32750af0dc5cbb2b5b29933169023ea7 to your computer and use it in GitHub Desktop.
SpringBoot Application primary file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.engg.java.reactive; | |
import org.springframework.boot.SpringApplication; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
@SpringBootApplication | |
public class ReactiveApplication { | |
public static void main(String[] args) { | |
SpringApplication.run(ReactiveApplication.class, args); | |
ReqResWebClient webClient = new ReqResWebClient(); | |
System.out.println(webClient.getResult()); | |
System.out.println(webClient.getUser1()); | |
System.out.println(webClient.getUser2()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment