├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── org │ │ └── arun │ │ └── springoauth │ │ └── employee │ │ ├── EmployeeMicroService.java │ │ └── config │ │ ├── JwtAccessTokenCustomizer.java │ │ ├── SecurityConfigurer.java │ │ ├── SecurityContextUtils.java │ │ └── SecurityProperties.java └── resources │ └── application.properties └── test └── java └── org └── arun └── springoauth └── employee └── EmployeeMicroServiceTests.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcarun/spring-oauth2-employee-service/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcarun/spring-oauth2-employee-service/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcarun/spring-oauth2-employee-service/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcarun/spring-oauth2-employee-service/HEAD/README.md -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcarun/spring-oauth2-employee-service/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcarun/spring-oauth2-employee-service/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcarun/spring-oauth2-employee-service/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/org/arun/springoauth/employee/EmployeeMicroService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcarun/spring-oauth2-employee-service/HEAD/src/main/java/org/arun/springoauth/employee/EmployeeMicroService.java -------------------------------------------------------------------------------- /src/main/java/org/arun/springoauth/employee/config/JwtAccessTokenCustomizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcarun/spring-oauth2-employee-service/HEAD/src/main/java/org/arun/springoauth/employee/config/JwtAccessTokenCustomizer.java -------------------------------------------------------------------------------- /src/main/java/org/arun/springoauth/employee/config/SecurityConfigurer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcarun/spring-oauth2-employee-service/HEAD/src/main/java/org/arun/springoauth/employee/config/SecurityConfigurer.java -------------------------------------------------------------------------------- /src/main/java/org/arun/springoauth/employee/config/SecurityContextUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcarun/spring-oauth2-employee-service/HEAD/src/main/java/org/arun/springoauth/employee/config/SecurityContextUtils.java -------------------------------------------------------------------------------- /src/main/java/org/arun/springoauth/employee/config/SecurityProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcarun/spring-oauth2-employee-service/HEAD/src/main/java/org/arun/springoauth/employee/config/SecurityProperties.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcarun/spring-oauth2-employee-service/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/test/java/org/arun/springoauth/employee/EmployeeMicroServiceTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcarun/spring-oauth2-employee-service/HEAD/src/test/java/org/arun/springoauth/employee/EmployeeMicroServiceTests.java --------------------------------------------------------------------------------