-
Spring Boot RestTemplate 兼容处理非 200 状态码的请求
需求 RestTemplate在处理状态码非200请求时,会抛出异常,需兼容处理异常。如:下游服务返回错误状态码401,而RestTemplate会直接报错。 代码 主要是设置RestTemplat
2024-04-06, Views: 922 , Topics: Spring Boot RestTemplate
-
Spring Boot 配置多个 RestTemplate 实例
场景 工程中需要配置不同处理器的RestTemplate,比如:有些场景使用默认的ErrorHandler不处理400/500异常,有些场景需要添加Interceptors拦截器。 代码 @Conf
2024-04-04, Views: 1048 , Topics: Spring Boot RestTemplate
-
Spring Boot 修改 RestTemplate 默认编码格式
描述 Spring Boot中提供的HTTP请求工具类RestTemplate默认的编码格式为:ISO-8859-1。 // A default constructor that uses {@co
2020-09-11, Views: 8516 , Topics: Spring Boot RestTemplate