Java 日常开发错误记录
2020-03-18 本文已影响0人
Vchar_Fred
请求失败,报Unrecognized SSL message, plaintext connection错误
这可能是由于本应该是http的请求地址,但是实际请求的地址是https
Feign相关
- java.lang.IllegalStateException: Service id not legal hostname (xxx) 服务名不能有下划线
- 'xx.FeignClientSpecification', defined in null, could not be registered.
需要在配置中添加如下配置:
spring:
main:
allow-bean-definition-overriding: true