angular-11-spring-boot-jwt-authentication
angular-11-spring-boot-jwt-authentication copied to clipboard
Angular 11 Spring Boot JWT Authentication example with Authorization | User Registration & Login
Hello, I have seen a little error for the "auth-token" SessionStorage. In frontend (File login.component.ts): ```javascript this.authService.login(username, password).subscribe( data => { this.tokenStorage.saveToken(data.accessToken); this.tokenStorage.saveUser(data); ``` In backend (File JwtResponse.java): ```java @Data...
I have fixed a few errors that prevent your project from running so that more people could benefit from it.