NottmTony
NottmTony

Reputation: 456

Spring 4 upgrade - now missing class CommonsHttpInvokerRequestExecutor

The following import statement fails:

import org.springframework.remoting.httpinvoker.CommonsHttpInvokerRequestExecutor;

This class used to reside in spring-web jar file in Spring 3, but now I've upgraded to use Spring 4 I cannot find this class file.

Upvotes: 3

Views: 2578

Answers (1)

Julian L.
Julian L.

Reputation: 431

The class has been replaced by org.springframework.remoting.httpinvoker.HttpComponentsHttpInvokerRequestExecutor (see source).

See also the documentation.

Upvotes: 2

Related Questions