如何增加AsyncRestTemplate类的超时?

时间:2018-05-29 22:45:22

标签: java spring asyncresttemplate

我已经使用spring框架和REST开发了一些异步Web服务,我已经使用spring class AsyncRestTemplate创建了一个客户端。类返回一个对象ListenableFuture<ResponseEntity<T>>(使用方法getForEntity),它带来了Web服务返回的值(使用方法.get():<T>)。它工作正常,但是当Web服务花费很多时间时,isDone()类的方法ListenableFuture返回值true,即使Web服务尚未完成工作。

如果我尝试使用客户端中的方法get()恢复Web服务响应并且它已经很晚了,我总是收到以下消息:

   "timestamp": "2018-05-29T22:42:26.978+0000",
   "status": 500,
   "error": "Internal Server Error",
   "message": "java.util.concurrent.ExecutionException: org.springframework.web.client.HttpServerErrorException: 503 null",
   "path": "/client/result"

有人知道我该如何解决这个问题?我希望客户端向我显示Web服务响应,即使Web服务需要很长时间(我想增加超时)。

服务器代码如下:

配置类:

@Configuration
@EnableAsync
public class ConfigurationClass {
    @Bean
    public Executor threadPoolTaskExecutor() {
        return new ThreadPoolTaskExecutor();
    }
}

控制器类:

@RestController
@RequestMapping("/server")
public class ControllerClass {

    @GetMapping("/start")
    @Async
    public CompletableFuture<String>  callService() throws InterruptedException{
        Thread.sleep(100000L);
        return CompletableFuture.completedFuture("OK");
    }
}

客户端代码(使用者)如下:

@RestController
@RequestMapping("/client")
public class ControllerClass {

    private ListenableFuture<ResponseEntity<String>> entity;

    @GetMapping("/start")
    @Async
    public void callService() throws InterruptedException {
        AsyncRestTemplate restTemplate = new AsyncRestTemplate();
        entity = restTemplate.getForEntity("http://localhost:8080/server/start",
                 String.class);
    }

    @GetMapping("/state")
    public boolean getState() {
        try {
            return entity.isDone();
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }

    @GetMapping("/result")
    public ResponseEntity<String> getResult() {
        try {
            return entity.get();
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }
}

我试图在application.property文件中增加属性超时,但它没有用。

# SPRING MVC (WebMvcProperties)
spring.mvc.async.request-timeout= 500000 # Amount of time before asynchronous request handling times out.

感谢您的帮助,问候。

1 个答案:

答案 0 :(得分:0)

为了更好的维护,您可以配置AsyncRestTemplate bean:

@Bean
public AsyncRestTemplate asyncRestTemplate() {
    SimpleClientHttpRequestFactory factory = new SimpleClientHttpRequestFactory();
    factory.setTaskExecutor(new SimpleAsyncTaskExecutor());
    factory.setConnectTimeout(1000);//milliseconds
    factory.setReadTimeout(2000);//milliseconds
    return new AsyncRestTemplate(factory);
}

然后,自动连接该bean:

@Autowired
private AsyncRestTemplate restTemplate;

之后,更新您的callService:

@GetMapping("/start")
public void callService() throws InterruptedException {
    entity = restTemplate.getForEntity("http://localhost:8080/server/start",
             String.class);
}

您可以删除@Async注释,因为AsyncRestTemplate是异步的。