Skip to content

Instantly share code, notes, and snippets.

@krnbr
Last active July 18, 2020 16:58
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 krnbr/8282f31252eb15c32a1721a480343c27 to your computer and use it in GitHub Desktop.
Save krnbr/8282f31252eb15c32a1721a480343c27 to your computer and use it in GitHub Desktop.
\--oauth2-spring-boot-client - Root
| .gitignore - Git management for ignoring not required files
| pom.xml - Maven pom.xml
+---src
| +---main
| | +---java
| | | \---in
| | | \---neuw
| | | \---oauth2
| | | | Oauth2SpringBootClientApplication.java - The SpringBootApplication main class.
| | | |
| | | +---client
| | | | TestClientService.java - The Service class for the interaction with the WebClient for the test resource server.
| | | |
| | | +---config
| | | | TestClientConfig.java - The TestClientConfig class is for the Beans setup of the WebClient and other beans.
| | | |
| | | +---service
| | | | TestService.java - The Service class for business logics intermediate between the Controller and the web client.
| | | |
| | | \---web
| | | \---controller
| | | TestController.java - The Web facing controller class for various request mappings
| | |
| | \---resources
| | application.properties - The Spring's application.properties for management of various variables
| |
|
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment