spring-security-react-ant-design-polls-app
spring-security-react-ant-design-polls-app copied to clipboard
Full Stack Polls App built using Spring Boot, Spring Security, JWT, React, and Ant Design
How do I connect to db's? I would like to run something
If I run "create database polling_app" I get a syntax error
Hi, i´m trying access http://localhost:8080/api/user/me via postman but i get error: { "timestamp": "2019-02-27T21:50:18.714+0000", "status": 401, "error": "Unauthorized", "message": "Full authentication is required to access this resource", "path": "/api/user/me" }...
added secret files and changed the image database to postgres and the code database as well
Hey! I followed your blog to implement JWT with spring security but i am running into problem when using @Secured("IS_AUTHENTICATED_ANONYMOUSLY") at controller action. It is not working there. what i...
I'm getting this error when trying to Signup: NetworkError when attempting to fetch resource
hello i want to using mysql stored procedure what the best coding sample ?
1.Could you tell me the reason of @CurrentUser annotation, if there is no logic implemented for that? It is like empty annotation that nothing changes? 2. Why you are autowiring...
According to IDEA inspection ``` Call to 'bearerToken.length()' is redundant ``` And Java doc of **substring(int)** can be used for this purpose. ``` /** * Returns a string that is...
hello, I can't understand what these line of code do. ```java URI location = ServletUriComponentsBuilder .fromCurrentContextPath().path("/users/{username}") .buildAndExpand(result.getUsername()).toUri(); return ResponseEntity.created(location).body(new ApiResponse(true, "User registered successfully")); ```