The most clear presentation on Spring Security. Thank you so much Daniel
@zartcolwing3218 Жыл бұрын
What a great presentation, perfect english, very legible, congrat.
@asterixcode8 ай бұрын
Awesome content and presentation. Thanks for putting it together and making it happen Daniel! Really appreciated it!
@KaiKumar-t8c8 ай бұрын
Wow, very good described Daniel! Thank you.👍
@pmorah9 ай бұрын
Awesome presentation. Thank you very much.
@gjperes17 ай бұрын
Awesome presentation, learned a lot, even some coding practices not related to Spring Security, thanks!!
@MahfuzulAlamCTG Жыл бұрын
Great presentation on Spring Security. Thanks.
@cristiangomez722711 ай бұрын
Amazing bro! I´d like to see more videos about this topic !
@JorgeCorradi Жыл бұрын
Very good talk!
@emmanuelcudjoe305 Жыл бұрын
Great presentation👏👏👏
@ladislavszabo4247 Жыл бұрын
Vielen Dank!
@srikanthpatri9022 Жыл бұрын
Awesome presentation dude❤
@achrafrahouti394 Жыл бұрын
beep boop Daniel 😊
@rodanmuro Жыл бұрын
Excellent presentation!! I have a question, if controller would never see the password, then if i want a controller to register an user, how could i do it? I mean, for registration user, the user has to send his credentials, I supossed that is in the controller, then do I have to create a filter for it?
@Kehrlann Жыл бұрын
Hey @rodanmuro! In that case, for user registration, it does makes sense to do it in a Controller - it's not performing "authentication", but actually some business logic for "creating" a user.
@Loki-vy5vg7 ай бұрын
Perfectionist
@maneshipocrates2264 Жыл бұрын
Great, great presentation. I have a question.
@Kehrlann Жыл бұрын
How may I help you? 😊
@maneshipocrates2264 Жыл бұрын
@@Kehrlann Thanks alot :) I am working on a mutli-module app and want to ask if it is okay to: 1) Use a single login for down stream services hoping to extract useful claims such as roles or username and use this to assign tasks at controller level? Or do you think it is okay to define a security filter chain in the a) spring cloud gateway (and enable oauth2 login) and b) tdefine another security filter chain at the down stream services?
@maneshipocrates2264 Жыл бұрын
In case I have say serviceA (moduleA) which manages user login and serviceB (moduleB) which manages another typer of users......in case I want to assign different roles to serviceA user to perform specific actions on serviceC, is it okay to extract claims or tokens (in a particular way) and use this to authorize users managed via serviceA? I can create a minimal example or a diagram. Thanks your talk really (if your a Daniel).