Skip to content

Instantly share code, notes, and snippets.

@ksurendra
Created March 26, 2020 21:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ksurendra/32750af0dc5cbb2b5b29933169023ea7 to your computer and use it in GitHub Desktop.
Save ksurendra/32750af0dc5cbb2b5b29933169023ea7 to your computer and use it in GitHub Desktop.
SpringBoot Application primary file
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