java SpringBoot应用程序:阅读URL进入等待状态并卡住了我的项目

ibrsph3r  于 2024-01-05  发布在  Java
关注(0)|答案(1)|浏览(163)

我在项目中使用以下API

GET:请求

https://myhost.com/api/option-chain-indices?symbol=ALL

这个URL在浏览器中工作,也在像PostMen这样的RESTClient应用程序中工作,但是当我调用我的项目时,它将进入等待状态
我正在使用许多API从不同的服务器的工作。但从这个服务器myhost.com等待响应。。我已经等待响应超过30分钟
我已经尝试了很多事情来获取数据的网址,但都是失败的
例一:

  1. public void myFunction() {
  2. String output = "";
  3. Root data = null;
  4. try {
  5. URL url1 = new URL("https://myhost.com/api/option-chain-indices?symbol=ALL");
  6. HttpURLConnection connection1 = (HttpURLConnection) url1.openConnection();
  7. connection1.setRequestMethod("GET");
  8. connection1.setRequestProperty("Accept", "application/json");
  9. if (connection1.getResponseCode() != 200) {
  10. System.out.println("NSE INIT : Failed : HTTP Error code : " + connection1.getResponseCode());
  11. } else {
  12. InputStreamReader in = new InputStreamReader(connection1.getInputStream());
  13. BufferedReader br = new BufferedReader(in);
  14. while ((output = br.readLine()) != null) {
  15. data = objectMapper.readValue(output, Root.class);
  16. }
  17. }
  18. connection1.disconnect();
  19. } catch (Exception e) {
  20. System.out.println("Exception" + e);
  21. }
  22. }

字符串
示例2:我也使用了WebClient

  1. @Service
  2. public class MyService {
  3. private final WebClient webClient;
  4. public MyService(WebClient.Builder webClientBuilder) {
  5. this.webClient = webClientBuilder.build();
  6. }
  7. public void fetchDataFromAPI() {
  8. System.out.println("Get Data ....");
  9. this.webClient.get()
  10. .uri("https://myhost.com/api/option-chain-indices?symbol=ALL")
  11. .retrieve()
  12. .bodyToMono(String.class)
  13. .subscribe(response -> {
  14. // Handle the response here
  15. System.out.println("Received response: " + response);
  16. });
  17. }
  18. }

h79rfbju

h79rfbju1#

根据@Haridarshan的评论,这解决了问题:

  1. connection1.setRequestProperty("User-Agent","nSense/1.0 (nSense Technologies)");

字符串

相关问题