本篇内容主要讲解“springcloud使用oauth2问题怎么解决”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“springcloud使用oauth2问题怎么解决”吧!OAth3是一个标准的授权协议。在认证与授权的过程中,主要包含以下3种角色。服务提供方 Authorization Server。
资源持有者 Resource Server。
客户端 Client。下面重点介绍下spring cloud 使用oauth3问题,内容如下所示:1、spring boot 集成oauth3,带了token却访问时各种禁止访问,追踪代码过滤器发现变为匿名用户导致无法访问授权资源,添加过滤器各种都没效果,甚至添加了过滤器登录都登录不了了,添加的依赖为将其直接改为spring-cloud-starter-oauth3 依赖,问题解决2、spring cloud oauth3 使用自定义 UserDetails 后,通过authentication.getPrincipal() instanceof OpenUserDetails获取用户信息时,老是报类型匹配失败(OpenUserDetails) authen免费云主机域名tication.getPrincipal() 使用这句时直接报错java.lang.ClassCastException: com.kou.auth.OpenUserDetails cannot be cast to com.kou.auth.OpenUserDetails通过classloader看,同一个类被不同的classloader加载了,导致无法匹配,通过查资料等最终确定问题是spring-boot-devtools 这个依赖引起的问题分析
分析出ClassLoader不同导致的类型转换异常,Spring的dev-tools为了实现重新装载class自己实现了一个类加载器,来加载项目中会改变的类,方便重启时将新改动的内容更新进来,其实其中官方文档中是有做说明的:By default, any open project in your IDE will be loaded using the “restart” classloader, and any regular .jar file will be loaded using the “base” classloader. If you work on a multi-module project, and not each module is imported into your IDE, you may need to customize things. To do this you can create a
META-INF/spring-devtools.properties file. The spring-devtools.properties file can contain restart.exclude. and restart.include. prefixed properties. The include elements are items that should be pulled up into the “restart” classloader, and the exclude elements are items that should be pushed down into the “base”
classloader. The value of the property is a regex pattern that will be applied to the classpath.处理方法,将其删掉或者在resources目录下面创建META_INF文件夹,然后创建spring-devtools.properties文件,文件加上类似下面的配置:到此,相信大家对“springcloud使用oauth2问题怎么解决”有了更深的了解,不妨来实际操作一番吧!这里是百云主机网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
这篇“Java顺序表和链表如何实现”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“Java顺序表和链表如何实现”文章吧。线性表(linear li…
免责声明:本站发布的图片视频文字,以转载和分享为主,文章观点不代表本站立场,本站不承担相关法律责任;如果涉及侵权请联系邮箱:360163164@qq.com举报,并提供相关证据,经查实将立刻删除涉嫌侵权内容。