首页 > 解决方案 > 如何在肥皂生产者中使用默认肥皂响应设置超时?

问题描述

我知道 timeout 是 client 的一个属性,但是我们需要在 2 分钟内从 spring soap 端点发送一个响应。

如何在春季肥皂中超时并在指定时间内从肥皂生产者应用程序发送默认响应?

容器:Tomcat

@Endpoint
public class SOAPEndpoint {
    private static final String NAMESPACE_URI = "http://spring.io/guides/gs-producing-web-service";

    private Repository repository;

    

    @PayloadRoot(namespace = NAMESPACE_URI, localPart = "getData")
    @ResponsePayload
    public Response getCountry(@RequestPayload SampleRequest request) {
    Response response = new Response();
        response.setCountry(repository.retrieveData(request.getParam())); // this lines takes 5 minutes to respond

        return response;
    }
}

标签: javaspringtomcatservletssoap

解决方案


我找不到基于配置的解决方案,但这里有一些可能的基于库的解决方案:

  • 一些数据库允许您设置查询超时,因此如果您可以使用它,这似乎是一个好方法。如果你要指定你使用的数据库,我会深入研究它。
  • 您可以使用Resilience4j 的 TimeLimiter
@PayloadRoot(namespace = NAMESPACE_URI, localPart = "getCountryRequest")
@ResponsePayload
public GetCountryResponse getCountry(@RequestPayload GetCountryRequest request) {
    GetCountryResponse response = new GetCountryResponse();
    TimeLimiter timeLimiter = TimeLimiter.of(Duration.ofSeconds(1));

    try {
        Country country = timeLimiter.executeFutureSupplier(() ->
           CompletableFuture.supplyAsync(() -> countryRepository.findCountry(request.getName())));
        response.setCountry(country);

        return response;
    } catch (TimeoutException e) {
        e.printStackTrace(); // handle timeout.
    } catch (Exception e) {
        e.printStackTrace(); // handle general error.
    }

    return null; // You may want to replace this.
}

上面的生产者代码源自 - https://spring.io/guides/gs/produce-web-service/ 并针对消费者进行了测试 - https://spring.io/guides/gs/sumption-web-service /


推荐阅读