常见问题汇总(二十)——Spring Cloud
1、config客服端总是从8888端口获取配置资源在bootstrap.yml中配置访问路径(最好优先级别配置,在项目启动前获取)2、config从私有仓库拉取配置如svn,gitlab等私有仓库必须配置用户名和密码,而共有仓库可以不要3、使用gateway时报错:xxx......ServerCodecConfigurer' that could not be found...
·
1、config客服端总是从8888端口获取配置资源
在bootstrap.yml中配置访问路径(最好优先级别配置,在项目启动前获取)
2、config从私有仓库拉取配置
如svn,gitlab等私有仓库必须配置用户名和密码,而共有仓库可以不要
3、使用gateway时报错:xxx......ServerCodecConfigurer' that could not be found
这是因为gateway是基于webFlux实现,如果进入了spring-boot-starter-web,则会导致冲突,需要去掉这个依赖。
4、FeginClient的同一个Name只能注解在一个接口上
#添加下列注解实现name重复使用
spring.main.allow-bean-definition-overriding: true
5、找不到或无法加载主类**Application
项目中存在多个main方法,解决方案,可以指定启动主类位置
6、Feign只允许单个RequestBody(没有注解默认会加上RequestBody)
解决方案:
@Component
public class FeignContract extends SpringMvcContract {
@Override
protected boolean processAnnotationsOnParameter(MethodMetadata data, Annotation[] annotations, int paramIndex) {
return annotations.length == 0 || super.processAnnotationsOnParameter(data, annotations, paramIndex);
}
}
更多推荐
已为社区贡献7条内容
所有评论(0)