├── .idea ├── .gitignore ├── Spring Security + Angular Authentication.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── Angular-Authentication ├── .editorconfig ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── README.md ├── angular.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── components │ │ │ ├── dashboard │ │ │ │ ├── dashboard.component.html │ │ │ │ ├── dashboard.component.scss │ │ │ │ ├── dashboard.component.spec.ts │ │ │ │ └── dashboard.component.ts │ │ │ ├── login │ │ │ │ ├── login.component.html │ │ │ │ ├── login.component.scss │ │ │ │ ├── login.component.spec.ts │ │ │ │ └── login.component.ts │ │ │ └── signup │ │ │ │ ├── signup.component.html │ │ │ │ ├── signup.component.scss │ │ │ │ ├── signup.component.spec.ts │ │ │ │ └── signup.component.ts │ │ └── service │ │ │ ├── auth.service.spec.ts │ │ │ └── auth.service.ts │ ├── assets │ │ └── .gitkeep │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ └── styles.scss ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── New Text Document.txt └── Spring-Secuirty-Jwt-In-Spring-Boot-3 ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── springjwt │ │ ├── SpringJwtApplication.java │ │ ├── configuration │ │ ├── SimpleCorsFilter.java │ │ └── WebSecurityConfiguration.java │ │ ├── controllers │ │ ├── AuthenticationController.java │ │ ├── HelloController.java │ │ └── SignupController.java │ │ ├── dto │ │ ├── AuthenticationDTO.java │ │ ├── AuthenticationResponse.java │ │ ├── HelloResponse.java │ │ ├── SignupDTO.java │ │ └── UserDTO.java │ │ ├── entities │ │ └── User.java │ │ ├── filters │ │ └── JwtRequestFilter.java │ │ ├── repositories │ │ └── UserRepository.java │ │ ├── services │ │ ├── auth │ │ │ ├── AuthService.java │ │ │ └── AuthServiceImpl.java │ │ └── jwt │ │ │ └── UserDetailsServiceImpl.java │ │ └── util │ │ └── JwtUtil.java └── resources │ └── application.properties └── test └── java └── com └── springjwt └── SpringJwtApplicationTests.java /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/Spring Security + Angular Authentication.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/.idea/Spring Security + Angular Authentication.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Angular-Authentication/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/.editorconfig -------------------------------------------------------------------------------- /Angular-Authentication/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/.gitignore -------------------------------------------------------------------------------- /Angular-Authentication/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/.vscode/extensions.json -------------------------------------------------------------------------------- /Angular-Authentication/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/.vscode/launch.json -------------------------------------------------------------------------------- /Angular-Authentication/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/.vscode/tasks.json -------------------------------------------------------------------------------- /Angular-Authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/README.md -------------------------------------------------------------------------------- /Angular-Authentication/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/angular.json -------------------------------------------------------------------------------- /Angular-Authentication/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/package-lock.json -------------------------------------------------------------------------------- /Angular-Authentication/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/package.json -------------------------------------------------------------------------------- /Angular-Authentication/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /Angular-Authentication/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/src/app/app.component.html -------------------------------------------------------------------------------- /Angular-Authentication/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular-Authentication/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Angular-Authentication/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/src/app/app.component.ts -------------------------------------------------------------------------------- /Angular-Authentication/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/src/app/app.module.ts -------------------------------------------------------------------------------- /Angular-Authentication/src/app/components/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- 1 |

{{message}}

-------------------------------------------------------------------------------- /Angular-Authentication/src/app/components/dashboard/dashboard.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular-Authentication/src/app/components/dashboard/dashboard.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/src/app/components/dashboard/dashboard.component.spec.ts -------------------------------------------------------------------------------- /Angular-Authentication/src/app/components/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/src/app/components/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /Angular-Authentication/src/app/components/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/src/app/components/login/login.component.html -------------------------------------------------------------------------------- /Angular-Authentication/src/app/components/login/login.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular-Authentication/src/app/components/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/src/app/components/login/login.component.spec.ts -------------------------------------------------------------------------------- /Angular-Authentication/src/app/components/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/src/app/components/login/login.component.ts -------------------------------------------------------------------------------- /Angular-Authentication/src/app/components/signup/signup.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/src/app/components/signup/signup.component.html -------------------------------------------------------------------------------- /Angular-Authentication/src/app/components/signup/signup.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular-Authentication/src/app/components/signup/signup.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/src/app/components/signup/signup.component.spec.ts -------------------------------------------------------------------------------- /Angular-Authentication/src/app/components/signup/signup.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/src/app/components/signup/signup.component.ts -------------------------------------------------------------------------------- /Angular-Authentication/src/app/service/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/src/app/service/auth.service.spec.ts -------------------------------------------------------------------------------- /Angular-Authentication/src/app/service/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/src/app/service/auth.service.ts -------------------------------------------------------------------------------- /Angular-Authentication/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular-Authentication/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/src/favicon.ico -------------------------------------------------------------------------------- /Angular-Authentication/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/src/index.html -------------------------------------------------------------------------------- /Angular-Authentication/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/src/main.ts -------------------------------------------------------------------------------- /Angular-Authentication/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/src/styles.scss -------------------------------------------------------------------------------- /Angular-Authentication/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/tsconfig.app.json -------------------------------------------------------------------------------- /Angular-Authentication/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/tsconfig.json -------------------------------------------------------------------------------- /Angular-Authentication/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Angular-Authentication/tsconfig.spec.json -------------------------------------------------------------------------------- /New Text Document.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/New Text Document.txt -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/.gitignore -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/mvnw -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/mvnw.cmd -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/pom.xml -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/SpringJwtApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/SpringJwtApplication.java -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/configuration/SimpleCorsFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/configuration/SimpleCorsFilter.java -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/configuration/WebSecurityConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/configuration/WebSecurityConfiguration.java -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/controllers/AuthenticationController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/controllers/AuthenticationController.java -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/controllers/HelloController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/controllers/HelloController.java -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/controllers/SignupController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/controllers/SignupController.java -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/dto/AuthenticationDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/dto/AuthenticationDTO.java -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/dto/AuthenticationResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/dto/AuthenticationResponse.java -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/dto/HelloResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/dto/HelloResponse.java -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/dto/SignupDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/dto/SignupDTO.java -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/dto/UserDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/dto/UserDTO.java -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/entities/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/entities/User.java -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/filters/JwtRequestFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/filters/JwtRequestFilter.java -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/repositories/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/repositories/UserRepository.java -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/services/auth/AuthService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/services/auth/AuthService.java -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/services/auth/AuthServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/services/auth/AuthServiceImpl.java -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/services/jwt/UserDetailsServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/services/jwt/UserDetailsServiceImpl.java -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/util/JwtUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/java/com/springjwt/util/JwtUtil.java -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/src/main/resources/application.properties -------------------------------------------------------------------------------- /Spring-Secuirty-Jwt-In-Spring-Boot-3/src/test/java/com/springjwt/SpringJwtApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/HEAD/Spring-Secuirty-Jwt-In-Spring-Boot-3/src/test/java/com/springjwt/SpringJwtApplicationTests.java --------------------------------------------------------------------------------