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