Spring Security - Lesson 33 - Integration testing for Spring Security implementations - Part 1

preview_player
Показать описание
The Spring Security stream will teach you how to use Spring Security, from the basic authentication and authorization architecture to using OAuth 2.

Рекомендации по теме
Комментарии
Автор

Very cool stuff, thanks for making / sharing!

balazsklezli
Автор

I love the idea about a software architecture stream. 54:54 Also in my opinion your channel is already the best source for Java related knowledge, it's just not that popular as some of the others yet, but I'm sure word will get spread soon.

PS: I'd also love to see series about Spring Messaging. I've been playing around with WebSockets and I've been struggling to find an easy to digest source of information on that topic.

smpl_
Автор

Awesome, please make a spring boot unit test tutorials also.

anaskamali
Автор

Hi, Laurentiu for the wonderful learning sessions. Please share some sessions in the spring reactor and how we handle security context object value between multiple threads.
I come across a problem of losing security context value when a new thread opens.

thefinalpost
Автор

Do you prefer using spring or postman collection for integrating testing?

lts
Автор

Excellent tutorial, thank you! What is the best way to test authorization when using AuthorizationServer?

kateryabtseva
Автор

sir when u gonna upload microservices architecture, thanks for ur pro lessons

elrachadyobi
Автор

if u can tell pls about how to work with doker

GT-cvxu
Автор

When I add @WithUserDetails, endpoint responds 404, if I remove WithUserDetails() annotation, endpoint responds with 201, any idea what is going on here?

nirvana
Автор

can u explain me? if I have deleteById metod with and when I write test with @WithMockUser(authorities = "ADMIN") - it all OK. but if I set USER in @WithMockUser(authorities = "USER") I supposed to have 403 forbidden but have 500! In logs has written-"All illegal access operations will be denied in a future release ". How I can manage it to have 403 instead of 500 error?

GT-cvxu