All Questions
5 questions
2
votes
1
answer
57
views
Any possible issues with my approach to Access Management where I'm associating the list of Departments with the User class?
I have a spring boot project with JWT being used for Spring Security. I want to implement Access Management in my project and I'm using this approach. In my project, whenever a user is created, a list ...
0
votes
1
answer
150
views
Code that checks whether there is a holiday by calling another microservice
I call another microservice to check whether there is any holiday on any particular day. This will then add a comment in the db if the rest call doesn't fetch an empty list(a list of size 1).
Here is ...
4
votes
0
answers
3k
views
Reactive JWT authentication using Spring webflux
Greeting to all senior devs here. I'm trying to create a project for my small business. There are not many tutorial on how to create Reactive JWT authentication with Spring webflux. So I'm a bit ...
2
votes
1
answer
1k
views
Create annotation to validate JWT in Spring controller instead of filter
I developed a Spring RESTful service that uses a JWT for authorization.
To the validity of this JWT, i used two different implementations.
Create a filter to intercept every request and validate ...
10
votes
1
answer
6k
views
Spring JWT authentication using cookies
I'm working on a experimental code which allows users to authorize using JWT's jjwt library.
Here's what I have done so far on authentication and authorization flow....