AsyncQuery.java 796 B

1234567891011121314151617181920212223242526
  1. package com.jkcredit.info.query.task;
  2. import com.jkcredit.info.query.util.CookieUtil;
  3. import com.jkcredit.info.query.util.HttpUtil;
  4. import lombok.extern.slf4j.Slf4j;
  5. import org.springframework.scheduling.annotation.Async;
  6. import org.springframework.scheduling.annotation.AsyncResult;
  7. import org.springframework.scheduling.annotation.EnableAsync;
  8. import org.springframework.stereotype.Service;
  9. import java.util.concurrent.Future;
  10. /**
  11. * @author xusonglin
  12. * @version V1.0
  13. **/
  14. @Service
  15. @Slf4j
  16. @EnableAsync
  17. public class AsyncQuery {
  18. @Async("executor")
  19. public Future<String> detailInfoQuery(String url) throws InterruptedException {
  20. String detailInfoContent = HttpUtil.doGet(url, CookieUtil.getAuthenticationCookie());
  21. return new AsyncResult<>(detailInfoContent);
  22. }
  23. }