spring android resttemplate null pointer异常的解决

史俊德
2023-12-01

首先更换版本为1.0.0以上,解决null pointer问题

其次按以下方式修改:

			HttpHeaders requestHeaders = new HttpHeaders();
			requestHeaders.set("Connection", "Close");

即关闭http连接的keep alive

这样做的后果是访问网络的性能会受到影响,所以一般使用在很少使用的地方,比如注册、登录等地方

更好的方法是:

restTemplate.setRequestFactory(new HttpComponentsClientHttpRequestFactory());

参考:

http://stackoverflow.com/questions/13182519/spring-rest-template-usage-causes-eofexception

 类似资料: