关于SpringBoot里的@PostConstruct和BeanPostProcessor接口 这两天在项目里看到有用到一个@PostConstruct注解,这个注解没怎么见过,查了一下,发现说是在Bean实例化时会执行加了这个注解的函数。突然想起之前在SpringBoot里用到的BeanPos... 2019年7月31日 SpringBoot 浏览量:1,985 次 发表评论 阅读全文
Spring Security Oauth2.0刷新token时报错UserDetailsService is required的解决方法 报这个错,很明显是缺少UserDetailsService,但是网上的一些解决方法里具体怎么添加这个类没写的很清楚。 一般都只说了在AuthorizationServerEndpointsConfig... 2019年3月6日 Spring Security 浏览量:2,933 次 发表评论 阅读全文
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,052 次 发表评论 阅读全文
app使用postman调试api接口返回Required request body is missing的错误 后台是用@RequestBody的方式来接受参数的。用postman返回Required request body is missing的错误。 百度了一下,发现@RequestBody这种方式用po... 2018年11月23日 浏览量:7,965 次 发表评论 阅读全文