上一页 1 2 3 4 5 6 ··· 119 下一页
摘要: security的jwt验证: 总体来说,我们加入依赖项,security就已经开始生效了,但是使用的默认的UserDetails和UserDetailsService, 一 、我们只要继承UserDetailsService,在数据库中查询用户和权限列表,封装成UserDetails的实现类,返回 阅读全文
posted @ 2024-06-12 16:47 与f 阅读(410) 评论(0) 推荐(0) 编辑
摘要: 原因:错误是路径通配问题,查找发现是spring升级到5.3之后路径通配发生了变化,官方给出的解释是“In Spring MVC, the path was previously analyzed by AntPathMatcher, but it was changed to use PathPa 阅读全文
posted @ 2024-06-06 13:45 与f 阅读(382) 评论(0) 推荐(0) 编辑
摘要: SpringBoot3+SpringSecurity整合 Security导包: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId 阅读全文
posted @ 2024-05-31 21:34 与f 阅读(116) 评论(0) 推荐(0) 编辑
摘要: SpringBoot3 整合SpringSecurity Maven <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3 阅读全文
posted @ 2024-05-31 21:29 与f 阅读(195) 评论(0) 推荐(0) 编辑
摘要: springboot3项目的搭建四(security登录认证配置) <!--security安全配置--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-securit 阅读全文
posted @ 2024-05-31 21:24 与f 阅读(1205) 评论(0) 推荐(0) 编辑
摘要: springboot3项目的搭建三(统一返回异常等) 一、统一返回 (其实两部分,一个是返回错误码可枚举可类,另一个是返回的实体其中data是泛型) 1.返回码: package com.qiqi.common.constants; public enum ReturnCode { SUCCESS( 阅读全文
posted @ 2024-05-30 09:30 与f 阅读(82) 评论(0) 推荐(0) 编辑
摘要: springboot3项目的搭建二(可连数据库的子模块) 1.先引入pom文件 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://ww 阅读全文
posted @ 2024-05-29 22:23 与f 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 在项目A中引入项目B的依赖,通过依赖传递,会把项目B中的jar都引进来,如果在项目A中不想使用项目B中的某些jar包,可以使用exclusions标签进行排除,具体该标签的用法: <!-- mybatis-spring依赖--> <dependency> <groupId>org.mybatis</ 阅读全文
posted @ 2024-05-29 10:15 与f 阅读(750) 评论(0) 推荐(0) 编辑
摘要: 转: https://blog.csdn.net/qq_40734758/article/details/132910708 https://blog.csdn.net/qq_22803841/article/details/126289285 https://blog.csdn.net/m0_47 阅读全文
posted @ 2024-05-25 14:42 与f 阅读(125) 评论(0) 推荐(0) 编辑
摘要: NuGet镜像上线试运行 为解决国内访问NuGet服务器速度不稳定的问题 ,这里推荐使用NuGet微软官方中国国内镜像 地址:https://nuget.cdn.azure.cn/v3/index.json 添加NuGet源的方式 菜单: 工具 -> NuGet包管理器 -> 程序包管理器设置 安装 阅读全文
posted @ 2024-05-23 11:03 与f 阅读(760) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 119 下一页