When i use new instance of resttemplate like, ''' RestTemplate r = new RestTemplate();'''
And hit my service,i get success. But the moment i add,
'''Resttemplate r = new Resttemplate(); r.setRequestfactory(new HttpComponentsClientHttpRequestFactory());''' I start getting 400 bad request in get calls while post calls still working. I am using spring 6 and jdk 17 and apache httpclient5. Previously with spring 5.x and apache client 4,it was working fine.