冷艳雨

文章
7
资源
0
加入时间
2年10月21天

关于springcloud 使用oauth2 和 feign 的坑

oauth2 框架中,使用 feign 会丢失原来的认证信息,网上很多大神也都发了解决方法,大致就是这样新建一个拦截器然后在你 的feign接口处配上就好了关于 feign 遇到的问题,就是 扫描包的 路径一定要写对,不然都不知道啥问题转载于:https://blog.51cto.com/9795602/2177730...

CommandLineRunner和ApplicationRunner比较

在springboot构建的项目启动后,想让程序自动执行一些任务,我们可以使用CommandLineRunner或ApplicationRunner实现。首先,我们来看看简单的源码。/** * Interface used to indicate that a bean should <em>run</em> when it is contained within...