зеркало из
https://github.com/iharh/notes.git
synced 2025-10-29 20:56:06 +02:00
98 строки
6.3 KiB
Plaintext
98 строки
6.3 KiB
Plaintext
lists
|
|
https://www.youtube.com/playlist?list=PL41m5U3u3wwl5FoM2Y5gIu1Q-Wr5ascD_
|
|
vega
|
|
https://www.youtube.com/playlist?list=PLZV0a2jwt22s5NCKOwSmHVagoDW8nflaC
|
|
JavaTechie
|
|
https://www.youtube.com/playlist?list=PLVz2XdJiJQxynOpTm0DuufOkfWHNamJsF
|
|
|
|
2023
|
|
EugeneSuleimanov - Creating REST API using Spring WebFlux and Security 0:00 of 1:27:41
|
|
https://www.youtube.com/watch?v=gz4KzqmOlaw
|
|
https://github.com/proselytear/webfluxsecurity
|
|
Fisunov - Spring Security: Spring Security + REST + JWT 0:00 of 1:52:12
|
|
https://www.youtube.com/watch?v=NIv9TFTSIlg
|
|
https://github.com/FlameXander/security-jwt
|
|
BoualiAli - Spring boot 3.0 - Secure your API with JWT Token 0:00 of 2:01:45
|
|
https://www.youtube.com/watch?v=BVdQ3iuovg0
|
|
https://github.com/ali-bouali/spring-boot-3-jwt-security
|
|
JavaTechie - Spring Boot 3.0 Security | Authentication and Authorization | [New Changes] 0:00 of 58:05
|
|
https://www.youtube.com/watch?v=R76S0tfv36w
|
|
Amigoscode - Spring Boot 3 + Spring Security 6 - JWT Authentication and Authorisation 0:00 of 2:05:51
|
|
https://www.youtube.com/watch?v=KxqlJblhzfI
|
|
Amigoscode - Spring Security Tutorial 0:00 of 1:31:04
|
|
https://www.youtube.com/watch?v=b9O9NI-RJ3o
|
|
Amigoscode - Spring Security Architecture Explained 0:00 of 14:40
|
|
https://www.youtube.com/watch?v=h-9vhFeM3MY
|
|
CodeElevate - Spring Boot 3 + Spring Security 6 | JWT Authorization | Part 2 | Authenticated API with JWT Token - 0:00 of 20:00
|
|
https://www.youtube.com/watch?v=gF3QnawtPp0
|
|
CodeElevate - Spring Boot 3 + Spring Security 6 | JWT Authentication | Create JWT Token | Signup + Login Rest API - 0:00 of 40:54
|
|
https://www.youtube.com/watch?v=YERACEd-VSw
|
|
https://github.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate
|
|
https://github.com/YouTubeProjectsCode/Spring_Secuirty-Angular_Authentication-CodeElevate/tree/main/Spring-Secuirty-Jwt-In-Spring-Boot-3
|
|
! expose jwt token
|
|
!!!
|
|
ThearaDawn - JWT Tokens for Authentication and Authorization in Spring Boot with Spring Security 0:00 of 3:08:12
|
|
https://www.youtube.com/watch?v=VcIagbi4djA
|
|
https://github.com/ThearaDawn/rean-spring-framework/tree/main/4.%20Security%20with%20Spring%20Boot/%232%20spring-security-jwt-authorization
|
|
!!! boot 3
|
|
https://github.com/ThearaDawn/rean-spring-framework/blob/main/4.%20Security%20with%20Spring%20Boot/%232%20spring-security-jwt-authorization/src/main/java/com/rean/jwt/impl/JwtServiceImpl.java
|
|
https://github.com/ThearaDawn/rean-spring-framework/tree/main/4.%20Security%20with%20Spring%20Boot/%232%20spring-security-jwt-authorization/src/main/java/com/rean/filter
|
|
|
|
Spilca
|
|
https://www.youtube.com/watch?v=1Mel8wn1HZs
|
|
https://www.youtube.com/watch?v=ZIS4273AAGI
|
|
https://www.youtube.com/playlist?list=PLEocw3gLFc8X_a8hGWGaBnSkPFJmbb8QP
|
|
DailyCodeBuffer - Spring Security Tutorial | In depth Course 0:00 of 2:38:18
|
|
https://www.youtube.com/watch?v=tWcqSIQr6Ks
|
|
https://developer.okta.com/blog/2017/06/21/what-the-heck-is-oauth
|
|
https://github.com/shabbirdwd53/spring-security-tutorial
|
|
https://github.com/shabbirdwd53/spring-security-tutorial/tree/main/Oauth-authorization-server
|
|
https://github.com/shabbirdwd53/spring-security-tutorial/blob/main/Oauth-authorization-server/src/main/java/com/dailycodebuffer/oauthserver/config/AuthorizationServerConfig.java
|
|
https://github.com/shabbirdwd53/spring-security-tutorial/blob/main/Oauth-authorization-server/src/main/java/com/dailycodebuffer/oauthserver/config/DefaultSecurityConfig.java
|
|
https://github.com/shabbirdwd53/spring-security-tutorial/tree/main/Oauth-resource-server
|
|
https://github.com/shabbirdwd53/spring-security-tutorial/blob/main/Oauth-resource-server/src/main/java/com/dailycodebuffer/Oauthresourceserver/config/ResourceServerConfig.java
|
|
! not lot of stuff
|
|
|
|
https://github.com/shabbirdwd53/spring-security-tutorial/tree/main/spring-security-client
|
|
https://github.com/shabbirdwd53/spring-security-tutorial/blob/main/spring-security-client/src/main/resources/application.yml
|
|
!!!
|
|
https://github.com/shabbirdwd53/spring-security-tutorial/blob/main/spring-security-client/src/main/java/com/dailycodebuffer/client/service/UserServiceImpl.java
|
|
!!!
|
|
https://github.com/shabbirdwd53/spring-security-tutorial/blob/main/spring-security-client/src/main/java/com/dailycodebuffer/client/controller/HelloController.java
|
|
@RegisteredOAuth2AuthorizedClient("api-client-authorization-code")
|
|
OAuth2AuthorizedClient client
|
|
https://github.com/shabbirdwd53/spring-security-tutorial/blob/main/spring-security-client/src/main/java/com/dailycodebuffer/client/config/WebSecurityConfig.java
|
|
https://github.com/shabbirdwd53/spring-security-tutorial/blob/main/spring-security-client/src/main/java/com/dailycodebuffer/client/config/WebClientConfiguration.java
|
|
OAuth2AuthorizedClientManager
|
|
OAuth2AuthorizedClientProvider
|
|
|
|
2022
|
|
OAuth 2.0 Implementation with Spring Security and Spring Boot | Full Example 0:00 of 1:11:14
|
|
https://www.youtube.com/watch?v=MOCeQYbQPPU
|
|
https://github.com/shabbirdwd53/spring-security-tutorial
|
|
DanVega - Spring Security without the WebSecurityConfigurerAdapter 0:00 of 17:07
|
|
https://www.youtube.com/watch?v=s4X4SJv2RrU
|
|
2021
|
|
Building and Securing a Web Application with Spring Boot 0:00 of 38:41
|
|
https://www.youtube.com/watch?v=9r7UxenMxuc
|
|
Spilca - Software Architecture Fundamentals - Episode 16 - OAuth 2 and OpenID Connect 0:00 of 55:00
|
|
https://www.youtube.com/watch?v=j1yOkj2JzwM&list=PLEocw3gLFc8VYPSFuQfTbqsK-0q2wDCoR&index=17
|
|
/auth/realms/master/.well-known/openid-configuration
|
|
/auth/realms/master/protocol/openid-connect/certs
|
|
/auth/realms/master/protocol/openid-connect/token
|
|
2019
|
|
DefogTech - Spring Boot Security Basics 0:00 of 14:33
|
|
https://www.youtube.com/watch?v=krLrHwRvTHc
|
|
Cummings - Securing OAuth 2.0 Resources in Spring Security 5
|
|
https://www.infoq.com/presentations/oauth-2-spring-security-5
|
|
Saikali - Microservices Security Patterns & Protocols with Spring & PCF
|
|
https://www.infoq.com/presentations/microservices-security-spring-pcf
|
|
2018
|
|
Securing OAuth 2.0 Resources in Spring Security 5.0
|
|
https://www.youtube.com/watch?v=1N-xwmoN83w
|
|
2017
|
|
Gasimov - Secured REST Microservices with Spring Cloud
|
|
https://www.youtube.com/watch?v=dq4RzFdm1Y0
|
|
2014
|
|
http://presos.dsyer.com/decks/microservice-security.html
|