springboot使用RestTemplate单元测试时,提示ResourceAccess I/O error on POST request for "http(转)
Posted java小胖
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot使用RestTemplate单元测试时,提示ResourceAccess I/O error on POST request for "http(转)相关的知识,希望对你有一定的参考价值。
springboot使用TestRestTemplate单元测试时,提示ResourceAccess I/O error on POST request for "http
发现如果后台的http状态码返回401则会出现这种情况(其他4XX等可能也会)
解决方案,pom.xml加入
<dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <scope>test</scope> </dependency>
转自 https://www.kanzhun.com/jiaocheng/296424.html
以上是关于springboot使用RestTemplate单元测试时,提示ResourceAccess I/O error on POST request for "http(转)的主要内容,如果未能解决你的问题,请参考以下文章
重学springboot系列番外篇之RestTemplate