Spring Security Oauth2.0刷新token时报错UserDetailsService is required的解决方法 报这个错,很明显是缺少UserDetailsService,但是网上的一些解决方法里具体怎么添加这个类没写的很清楚。 一般都只说了在AuthorizationServerEndpointsConfig... 2019年3月6日 Spring Security 浏览量:2,933 次 发表评论 阅读全文
Spring SecuritySpring Security Oauth2.0刷新token时报错401 Unauthorized和invalid_client Bad client credentials的解决方法 关于这个问题,在网上找了很多,但是都没有解决我的问题。 首先,刷新token调用的接口是/oauth/token,其中参数有 grant_type=refresh_token refresh_toke... 2019年3月5日 浏览量:4,585 次 发表评论 阅读全文
Spring Security Oauth2.0调用check_token接口报错401 Unauthorized的解决方法 Spring Security Oauth2.0里帮我们封装了check_token接口,但是调用时报错 "status": 401, "error": "Unauthorized", "messag... 2019年3月5日 Spring Security 浏览量:6,053 次 发表评论 阅读全文
Spring Security Oauth2.0可以正常获取access_token,但返回值里没有refresh_token { "access_token": "12d1e7b8-0456-495b-91f8-2ff481b810e6", "token_type": "bearer", "expires_in": 4139... 2019年3月4日 Spring Security 浏览量:3,726 次 发表评论 阅读全文
访问http://localhost:6666/时报错:网页可能暂时无法连接,或者它已永久性地移动到了新网址。 最近在用Spring的Zuul和Eureka弄集群,很奇怪的是用Zuul访问时能访问到localhost:6666,但是在chrome里直接访问http://localhost:6666/时就报错如下... 2019年2月28日 SpringCloud 浏览量:3,648 次 发表评论 阅读全文
B树和B+树的特点与区别 B树和B+树的特点与区别 树的高度一般都在2-4这个高度,树的高度直接影响IO读写的次数。 如果是三层树结构---支撑的数据可以达到20G,如果是四层树结构---支撑数据能达到几十T. B树和B+树的... 2019年2月27日 mysql 浏览量:1,792 次 发表评论 阅读全文
intellij idea中设置了server.port后不起作用,启动tomcat还是8080端口 intellij idea中设置了server.port后启动tomcat还是8080端口,但是另外一个工程就可以。网上的方法对我都不适用。最后排除了很多才发现原因。 原因是因为这个工程里使用了red... 2019年2月20日 IntelliJ IDEA 浏览量:4,625 次 发表评论 阅读全文
getForObject访问接口报错org.springframework.web.client.HttpClientErrorException$Unauthorized: 401 null 用restTemplate.getForObject访问认证服务器的接口/check/token时报错 org.springframework.web.client.HttpClientErrorEx... 2019年2月19日 SpringCloud 浏览量:2,952 次 发表评论 阅读全文
Spring Security Oauth2.0报错User must be authenticated with Spring Security before authorization can be completed 今天访问http://localhost:8081/auth/oauth/authorize?时居然报错了,但前几天还是好的啊 User must be authenticated with Spri... 2019年2月15日 Spring Security 浏览量:6,400 次 发表评论 阅读全文