Compare commits
No commits in common. "3832d5a3262f6c9f6b25182469fc10d6847584c9" and "eddd8d14dd037d90a7d8462b0d5f6dc885925f5f" have entirely different histories.
3832d5a326
...
eddd8d14dd
5
pom.xml
5
pom.xml
@ -38,11 +38,6 @@
|
||||
<version>${junit.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.code.gson</groupId>
|
||||
<artifactId>gson</artifactId>
|
||||
<version>2.10.1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
|
@ -5,12 +5,9 @@ import java.util.ArrayList;
|
||||
public class Kind {
|
||||
|
||||
// region Felder
|
||||
|
||||
private transient int id;
|
||||
private String name;
|
||||
private String vorname;
|
||||
private int bid;
|
||||
|
||||
private int id;
|
||||
// TODO Zutat implementieren!
|
||||
private ArrayList<Zutat> filter;
|
||||
// endregion
|
||||
@ -40,14 +37,6 @@ public class Kind {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public int getBid() {
|
||||
return bid;
|
||||
}
|
||||
|
||||
public void setBid(int bid) {
|
||||
this.bid = bid;
|
||||
}
|
||||
|
||||
// TODO Zutat implementieren!
|
||||
|
||||
public ArrayList<Zutat> getFilter() {
|
||||
@ -60,12 +49,10 @@ public class Kind {
|
||||
// endregion
|
||||
|
||||
// region Konstruktoren
|
||||
public Kind(String name, String vorname, int bid) {
|
||||
public Kind(String name, String vorname) {
|
||||
this.name = name;
|
||||
this.vorname = vorname;
|
||||
this.bid = bid;
|
||||
}
|
||||
|
||||
// endregion
|
||||
|
||||
|
||||
|
@ -1,3 +1,9 @@
|
||||
/**
|
||||
* @author Samuel Wolff
|
||||
* noch nicht getestet
|
||||
* TODO FERTIG MACHEN
|
||||
*/
|
||||
|
||||
package RestAPISchnittstelle;
|
||||
|
||||
import java.net.URI;
|
||||
@ -5,38 +11,22 @@ import java.net.http.HttpClient;
|
||||
import java.net.http.HttpRequest;
|
||||
import java.net.http.HttpResponse;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
import java.nio.file.WatchEvent;
|
||||
|
||||
import Logik.Kind;
|
||||
import com.google.gson.Gson;
|
||||
|
||||
/**
|
||||
* noch nicht getestet
|
||||
* TODO FERTIG MACHEN
|
||||
* @author Samuel Wolff
|
||||
*/
|
||||
public class RestApiClient implements IRestAPI{
|
||||
|
||||
private final String urlBase = "https://pbg2h22awo.web.pb.bib.de/VPR_Schnittstelle/VPR_Schnittstelle/restAPI.php";
|
||||
|
||||
private final HttpClient client;
|
||||
|
||||
private final Gson gson;
|
||||
|
||||
public RestApiClient(){
|
||||
client = HttpClient.newHttpClient();
|
||||
gson = new Gson();
|
||||
}
|
||||
|
||||
|
||||
|
||||
public static void main(String[] args){
|
||||
|
||||
Kind kind = new Kind("Klein", "Kevin", 2);
|
||||
|
||||
String json = new Gson().toJson(kind);
|
||||
|
||||
new RestApiClient().post("Kind", json);
|
||||
new RestApiClient().get("Kind", 2);
|
||||
|
||||
}
|
||||
|
||||
@ -56,11 +46,9 @@ public class RestApiClient implements IRestAPI{
|
||||
// Send the request and get the response
|
||||
HttpResponse<String> httpResponse = client.send(httpRequest, HttpResponse.BodyHandlers.ofString());
|
||||
|
||||
Kind test = gson.fromJson(httpResponse.body(), Kind.class);
|
||||
|
||||
// Print the response status code and body
|
||||
System.out.println("Status Code: " + httpResponse.statusCode());
|
||||
System.out.println("Response Body: " + test.getName());
|
||||
System.out.println("Response Body: " + httpResponse.body());
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
@ -83,14 +71,9 @@ public class RestApiClient implements IRestAPI{
|
||||
// Send the request and get the response
|
||||
HttpResponse<String> httpResponse = client.send(httpRequest, HttpResponse.BodyHandlers.ofString());
|
||||
|
||||
Kind[] test = gson.fromJson(httpResponse.body(), Kind[].class);
|
||||
|
||||
// Print the response status code and body
|
||||
System.out.println("Status Code: " + httpResponse.statusCode());
|
||||
for(Kind i : test){
|
||||
System.out.println(i.getVorname());
|
||||
}
|
||||
//System.out.println("Response Body: " + test);
|
||||
System.out.println("Response Body: " + httpResponse.body());
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
@ -154,26 +137,7 @@ public class RestApiClient implements IRestAPI{
|
||||
*/
|
||||
@Override
|
||||
public void post(String controllerName, String jsonData) {
|
||||
URI apiUri = URI.create(String.format("%s/%s", urlBase,controllerName));
|
||||
|
||||
System.out.println(apiUri);
|
||||
|
||||
HttpRequest httpRequest = HttpRequest.newBuilder()
|
||||
.uri(apiUri)
|
||||
.header("Content-Type", "application/json")
|
||||
.POST(HttpRequest.BodyPublishers.ofString(jsonData, StandardCharsets.UTF_8))
|
||||
.build();
|
||||
|
||||
try {
|
||||
// Send the request and get the response
|
||||
HttpResponse<String> httpResponse = client.send(httpRequest, HttpResponse.BodyHandlers.ofString());
|
||||
|
||||
// Print the response status code and body
|
||||
System.out.println("Status Code: " + httpResponse.statusCode());
|
||||
System.out.println("Response Body: " + httpResponse.body());
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -2,10 +2,8 @@ module de.subway_surfers.vpr_app {
|
||||
requires javafx.controls;
|
||||
requires javafx.fxml;
|
||||
requires java.net.http;
|
||||
requires com.google.gson;
|
||||
|
||||
|
||||
opens de.subway_surfers.vpr_app to javafx.fxml, com.google.gson;
|
||||
opens Logik to com.google.gson;
|
||||
opens de.subway_surfers.vpr_app to javafx.fxml;
|
||||
exports de.subway_surfers.vpr_app;
|
||||
}
|
Loading…
Reference in New Issue
Block a user