Suika
Suika
JCHJava Community | Help. Code. Learn.
Created by Suika on 3/17/2025 in #java-help
IntelliJ does not recognize Maven Project
I started a new project wth Maven, but when i want to start booting my application, it searched for build.gradle. Help.
5 replies
JCHJava Community | Help. Code. Learn.
Created by Suika on 2/23/2025 in #java-help
Sprign Data JDBC doesnt save my Domain
I have these classes:
public class KarteikarteSet
private UUID fachId;
private UUID modulFachId;
private String name;
private String beschreibung;
private String lernIntervalle;
private List<Karteikarte> karteikarten;

public class Karteikarte {
private UUID fachId;
private String frage;
private String antwort;
private List<Antwort> antworten;
private LocalDateTime erstelltAm;
private LocalDateTime letzteAenderungAm;
private LocalDateTime zuletztGelerntAm;
private String notiz;
private int level;
private FrageTyp frageTyp;
private int antwortzeitSekunden;
}

public class Antwort {
private String antwort;
private Integer karteikarte;
}

public interface KarteikartenSetDao extends CrudRepository<KarteikartenSetDto, Integer> {
List<KarteikartenSetDto> findAll();

}
public class KarteikarteSet
private UUID fachId;
private UUID modulFachId;
private String name;
private String beschreibung;
private String lernIntervalle;
private List<Karteikarte> karteikarten;

public class Karteikarte {
private UUID fachId;
private String frage;
private String antwort;
private List<Antwort> antworten;
private LocalDateTime erstelltAm;
private LocalDateTime letzteAenderungAm;
private LocalDateTime zuletztGelerntAm;
private String notiz;
private int level;
private FrageTyp frageTyp;
private int antwortzeitSekunden;
}

public class Antwort {
private String antwort;
private Integer karteikarte;
}

public interface KarteikartenSetDao extends CrudRepository<KarteikartenSetDto, Integer> {
List<KarteikartenSetDto> findAll();

}
This is my schema:
create table karteikarte_set(
id serial primary key,
fach_id uuid,
modul_fach_id uuid,
name varchar(255) not null,
beschreibung text,
lern_intervalle varchar(100)
);

create table karteikarte(
id serial primary key,
fach_id uuid,
frage text,
antwort text,
erstellt_am timestamp not null,
letzte_aenderung_am timestamp not null,
zuletzt_gelernt_am timestamp not null,
notiz text,
level int,
frage_typ varchar(20),
antwortzeit_sekunden int,
karteikarte_set int references karteikarte_set(id),
karteikarte_set_key int
);

create table antwort(
id serial primary key,
antwort text,
karteikarte int references karteikarte(id),
karteikarte_key int
);
create table karteikarte_set(
id serial primary key,
fach_id uuid,
modul_fach_id uuid,
name varchar(255) not null,
beschreibung text,
lern_intervalle varchar(100)
);

create table karteikarte(
id serial primary key,
fach_id uuid,
frage text,
antwort text,
erstellt_am timestamp not null,
letzte_aenderung_am timestamp not null,
zuletzt_gelernt_am timestamp not null,
notiz text,
level int,
frage_typ varchar(20),
antwortzeit_sekunden int,
karteikarte_set int references karteikarte_set(id),
karteikarte_set_key int
);

create table antwort(
id serial primary key,
antwort text,
karteikarte int references karteikarte(id),
karteikarte_key int
);
63 replies
JCHJava Community | Help. Code. Learn.
Created by Suika on 2/18/2025 in #java-help
Spring Boot, JavaScript fetching Endpoint
Hi, my method getSeconds() is not invoked. @PostMapping("/get-seconds") public ResponseEntity<Integer> getSeconds(@RequestBody ModulUpdateRequest request) { log.info("called get-seconds"); return ResponseEntity.ok(modulService.getSecondsForId(UUID.fromString(request.fachId()))); } this is my fetch: export async function getSeconds(fachId) { try { const csrfToken = getCsrfToken(); console.log("csrf=" + csrfToken) const response = await fetch('/api/get-seconds', { method: 'POST', credentials: "include", headers: { 'Content-Type': 'application/json', 'X-XSRF-TOKEN': csrfToken }, body: JSON.stringify({ fachId }) }); console.log(response) //if (!response.ok) { // throw new Error(HTTP error! Status: ${response.status}); //} return await response.text(); } catch (error) { //console.error('Fehler beim Abrufen der Sekunden:', error); } }
222 replies
JCHJava Community | Help. Code. Learn.
Created by Suika on 1/20/2025 in #java-help
Spring Boot, Eureka Server shuts Service down
No description
3 replies
JCHJava Community | Help. Code. Learn.
Created by Suika on 10/18/2024 in #java-help
Pipe data in POST-Controller with dynamically created th:name's (Spring Web, Thymeleaf)
No description
21 replies