Ich möchte BIT (Built in Tests) für eine Reihe von Servern in meiner Cloud erstellen. Ich brauche die Anfrage, um bei großer Zeitüberschreitung fehlzuschlagen.
Wie soll ich das mit Java machen?
Es scheint nicht zu funktionieren, so etwas wie das Folgende zu versuchen.
public class TestNodeAliveness {
public static NodeStatus nodeBIT(String elasticIP) throws ClientProtocolException, IOException {
HttpClient client = new DefaultHttpClient();
client.getParams().setIntParameter("http.connection.timeout", 1);
HttpUriRequest request = new HttpGet("http://192.168.20.43");
HttpResponse response = client.execute(request);
System.out.println(response.toString());
return null;
}
public static void main(String[] args) throws ClientProtocolException, IOException {
nodeBIT("");
}
}
- BEARBEITEN: Klären Sie, welche Bibliothek verwendet wird -
Ich verwende httpclient von Apache. Hier ist der entsprechende Abschnitt pom.xml
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.0.1</version>
<type>jar</type>
</dependency>