Skip to content

Instantly share code, notes, and snippets.

@krnbr
Last active July 19, 2020 10:15
Show Gist options
  • Save krnbr/8cd6de071b7d91648a49dff13508d438 to your computer and use it in GitHub Desktop.
Save krnbr/8cd6de071b7d91648a49dff13508d438 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
| | | | OAuth2ClientSSLPropertiesConfigurer.java - The class to manage the custom ssl properties
| | | | 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
| | | +---util
| | | +---security
| | | SSLContextHelper.java - The utility class to support the SSLContext creation
| | |
| | \---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