Hello Sir, I encountered a problem when trying to read the CSRF token from the header. When I console log the cookies, they appear as an empty object. I followed the same procedure that you applied in your code. Can you please help me with this?
Are you still having an issue with this? If so, can you please post a comment on the blog post (in the description). It'll be easier to help you there.
Cloned auth0 repo, getting the following error when saving new group: jakarta.persistence.EntityNotFoundException: Unable to find com.okta.developer.jugtours.model.User with id auth0|64428e904fdb346fecd7f713
Solved by adding this line to check if user exists; if (user.isEmpty()) { User newUser = new User(userId, details.get("name").toString(), details.get("email").toString()); userRepository.save(newUser); }
26:36 That Stack Overflow question sure looks familiar. (I'm the one who asked it.) 😆
I would like to know a little more about your shortcuts/templates. It was nice and fast
I like your video but i'd like to know about these shortcuts you used. Or if you can tell me where you talked about it :)
Thank you!
Please Let us know which Intelij IDEA theme are you using ? your IDE Looks so clean
I'm using their New UI option under Appearance & Behavior in Settings.
Which plugin do you use for shortcuts?
This is IntelliJ's Live Templates feature. You can find mine at github.com/mraible/idea-live-templates.
Hello Sir, I encountered a problem when trying to read the CSRF token from the header. When I console log the cookies, they appear as an empty object. I followed the same procedure that you applied in your code. Can you please help me with this?
Are you still having an issue with this? If so, can you please post a comment on the blog post (in the description). It'll be easier to help you there.
Thank you so much, Sir, for your reply. The issue was solved.@@mraible
Why need Lombok when using Java 17 ?
Because Records don't work with JPA.
To save your time from creating setter, getter and constructors
Hey man whats ur intell ij theme and plugins?
Mee too. This theme looks so nice and clean
I'm using their New UI option under Appearance & Behavior in Settings.
Cloned auth0 repo, getting the following error when saving new group:
jakarta.persistence.EntityNotFoundException: Unable to find com.okta.developer.jugtours.model.User with id auth0|64428e904fdb346fecd7f713
Solved by adding this line to check if user exists;
if (user.isEmpty()) {
User newUser = new User(userId, details.get("name").toString(), details.get("email").toString());
userRepository.save(newUser);
}