江南一点雨

http://itboyhub.com/2021/01/26/spring-security-guide/
对应的 Demo 地址如下:

https://mp.weixin.qq.com/s/Q0GkUb1Nt6ynV22LFHuQrQ

https://mp.weixin.qq.com/s/Xzt9ymff0DCbAQbklHOxpQ
https://mp.weixin.qq.com/s?__biz=MzI1NDY0MTkzNQ==&mid=2247486735&idx=1&sn=4208470b30cbe5b7bbfb0ab53e6914a3&scene=21#wechat_redirect

三更 2022年3月20日

2022年3月20日 完结撒花
https://www.bilibili.com/video/BV1mm4y1X7Hc?p=41&spm_id_from=pageDriver

https://space.bilibili.com/663528522/video

D:\OneDrive - RONKW\桌面\课程资料汇总\spring security\三更\
image.png

2021年部分

鱼皮Java学习路线
https://www.docs4dev.com/docs/zh 中文
https://www.docs4dev.com/docs/zh/spring-security/4.2.10.RELEASE/reference/preface.html
https://docs.spring.io/spring-security/reference/getting-spring-security.html 英文文档

2021年11月29日

https://www.bilibili.com/video/BV15a411A7kP?p=1
https://www.bilibili.com/video/BV15a411A7kP?p=7&spm_id_from=pageDriver

  1. <dependencies>
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter-web</artifactId>
  5. </dependency>
  6. <dependency>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-security</artifactId>
  9. </dependency>
  10. <dependency>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-test</artifactId>
  13. <scope>test</scope>
  14. </dependency>
  15. <!--mybatis-plus-->
  16. <dependency>
  17. <groupId>com.baomidou</groupId>
  18. <artifactId>mybatis-plus-boot-starter</artifactId>
  19. <version>3.0.5</version>
  20. </dependency>
  21. <!--mysql-->
  22. <dependency>
  23. <groupId>mysql</groupId>
  24. <artifactId>mysql-connector-java</artifactId>
  25. </dependency>
  26. <!--lombok 用来简化实体类-->
  27. <dependency>
  28. <groupId>org.projectlombok</groupId>
  29. <artifactId>lombok</artifactId>
  30. </dependency>
  31. </dependencies>

https://www.bilibili.com/video/BV15a411A7kP?p=16&spm_id_from=pageDriver

2021年11月30日

hutools b站视频讲解
https://www.bilibili.com/video/BV15a411A7kP?p=40&spm_id_from=pageDriver
剩下源码部分