上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 122 下一页
摘要: ruoyi自定义登录中ThreadLocal的使用 (它的ThreadLocal封装在AuthenticationContextHolder) 登录代码: /** * 登录验证 * * @param username 用户名 * @param password 密码 * @param code 验证 阅读全文
posted @ 2023-05-19 09:46 与f 阅读(477) 评论(0) 推荐(0)
摘要: Spring Security配置(包含WebSecurityConfigurerAdapter过时问题) pom.xml文件引入以下依赖 <!--spring security--> <dependency> <groupId>org.springframework.boot</groupId> 阅读全文
posted @ 2023-05-17 16:54 与f 阅读(1180) 评论(0) 推荐(0)
摘要: 1. 引入相关依赖(略) <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> <dependency> 阅读全文
posted @ 2023-05-12 10:40 与f 阅读(70) 评论(0) 推荐(0)
摘要: C# 有Linq对list等数据的排序过滤等操作 java有stream() php也有第三方库phpLinq,或array_filter()、array_search()、array_map()等也行。 ..... 它们都是,配合一个方法或函数(可以匿名函数和lambda表达式),进行过滤. 相关 阅读全文
posted @ 2023-05-06 09:31 与f 阅读(27) 评论(0) 推荐(0)
摘要: php比较好的技术栈 laravel + laravel-admin(快速构建后台) : https://laravel-admin.org/ Dcat Admin 中文文档 (基于laravel-admin实现): https://learnku.com/docs/dcat-admin/2.x T 阅读全文
posted @ 2023-05-05 11:07 与f 阅读(485) 评论(0) 推荐(0)
摘要: 1. 前言 Apache Shiro是一个功能强大且易于使用的Java安全框架,提供了认证,授权,加密,和会话管理。 Shiro有三大核心组件: Subject: 即当前用户,在权限管理的应用程序里往往需要知道谁能够操作什么,谁拥有操作该程序的权利,shiro中则需要通过Subject来提供基础的当 阅读全文
posted @ 2023-05-04 11:13 与f 阅读(202) 评论(0) 推荐(0)
摘要: 转: https://www.w3cschool.cn/springsecurity/fyc61ii5.html 阅读全文
posted @ 2023-05-04 10:41 与f 阅读(78) 评论(0) 推荐(0)
摘要: 在最新、独立的 Spring Security 5.7 版本,还是更新了不少内容,之前的 WebSecurityConfigurerAdapter 已经被废弃了,大家在使用的时候,可以参考下面的配置文件。另外提醒一句,在最新的 Spring Boot 版本中的 Spring Security 并不一 阅读全文
posted @ 2023-04-27 16:38 与f 阅读(2439) 评论(0) 推荐(0)
摘要: 1. spring security的介绍 spring security是一个安全管理框架,源自 Spring 家族,可以和 Spring 框架无缝整合。其主要功能有: 认证也就是你进行访问一些网站的时候需要进行登陆之后才能够访问,不登陆的话是无法访问的,认证这块的解决方案很多,主流的有CAS、S 阅读全文
posted @ 2023-04-26 16:42 与f 阅读(279) 评论(0) 推荐(0)
摘要: 目录 案例引入 @Valid 详解 @Validated 详解 @Valid 和 @Validated 比较 案例引入 下面我们以新增一个员工为功能切入点,以常规写法为背景,慢慢烘托出 @Valid 和 @Validated 注解用法详解。 那么,首先,我们会有一个员工对象 Employee,如下 阅读全文
posted @ 2023-04-24 17:42 与f 阅读(275) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 122 下一页