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