Last active
July 19, 2020 10:15
-
-
Save krnbr/8cd6de071b7d91648a49dff13508d438 to your computer and use it in GitHub Desktop.
folder structure for https://github.com/neuw/oauth2-spring-boot-client-mtls
This file contains hidden or 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
\--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