0

我是弹簧靴的新手。

我收到此异常:无法在 [服务 URL] 访问 HTTP INVOKER 远程服务;嵌套异常是 Java.net.SocketTimeOutException: Read Time out。

我需要一个解决方案。我进入 XML 文件以在调用该服务 URL 时增加 readTimeout 但它说没有这样的属性 为该属性定义了一个 bean

我尝试增加服务器和客户端超时但没有运气。

4

1 回答 1

0

增加 httpInvokerRequestExecuter 的读取超时,或者您可以将其设置为 0

<bean id="httpInvokerReqExecutor" class="org.springframework.remoting.httpinvoker.CommonsHttpInvokerRequestExecuto‌​r" > 
     <property name="readTimeout" value="0" /> 
</bean> 

试试这个。

于 2021-10-27T17:31:01.600 回答