Java springframework remoting httpinvoker replacement

Viewed 1353

The spring framework in 5.3 and higher deprecated org.springframework.remoting.httpinvoker

when we upgrade Spring to 5.3

wondering what is the replacement

our existing code base have:

import org.springframework.remoting.httpinvoker.HttpComponentsHttpInvokerRequestExecutor;

import org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean;

HttpInvokerProxyFactoryBean proxy = new HttpInvokerProxyFactoryBean();

HttpComponentsHttpInvokerRequestExecutor re = new HttpComponentsHttpInvokerRequestExecutor();

what I could use to replace the class

0 Answers
Related