Controller question fini et testé avec postman
This commit is contained in:
BIN
data/test.lck
BIN
data/test.lck
Binary file not shown.
@@ -1,3 +0,0 @@
|
||||
/*C1*/SET SCHEMA SYSTEM_LOBS
|
||||
INSERT INTO BLOCKS VALUES(0,2147483647,0)
|
||||
COMMIT
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#HSQL Database Engine 2.7.2
|
||||
#Sat Oct 11 15:53:59 CEST 2025
|
||||
modified=yes
|
||||
tx_timestamp=1
|
||||
#Sun Oct 12 17:07:05 CEST 2025
|
||||
modified=no
|
||||
tx_timestamp=28
|
||||
version=2.7.2
|
||||
|
||||
@@ -29,8 +29,8 @@ SET FILES NIO TRUE
|
||||
SET FILES NIO SIZE 256
|
||||
SET FILES LOG TRUE
|
||||
SET FILES LOG SIZE 50
|
||||
SET FILES CHECK 1
|
||||
SET DATABASE COLLATION SQL_TEXT PAD SPACE
|
||||
SET FILES CHECK 28
|
||||
SET DATABASE COLLATION "SQL_TEXT" PAD SPACE
|
||||
CREATE USER SA PASSWORD DIGEST 'd41d8cd98f00b204e9800998ecf8427e'
|
||||
ALTER USER SA SET LOCAL TRUE
|
||||
CREATE SCHEMA PUBLIC AUTHORIZATION DBA
|
||||
@@ -42,3 +42,5 @@ GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.CHARACTER_DATA TO PUBLIC
|
||||
GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.SQL_IDENTIFIER TO PUBLIC
|
||||
GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.TIME_STAMP TO PUBLIC
|
||||
GRANT DBA TO SA
|
||||
SET SCHEMA SYSTEM_LOBS
|
||||
INSERT INTO BLOCKS VALUES(0,2147483647,0)
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package sample.data.jpa.metier;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import jakarta.persistence.Entity;
|
||||
@@ -14,7 +15,7 @@ import lombok.Setter;
|
||||
@NoArgsConstructor
|
||||
@PrimaryKeyJoinColumn(name = "Choix_Id")
|
||||
public class Choix extends Reponse{
|
||||
List<String> choix;
|
||||
List<String> choix = new ArrayList<String>();;
|
||||
|
||||
@Override
|
||||
public String valHTML(){
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
package sample.data.jpa.metier;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import jakarta.persistence.*;
|
||||
@@ -22,7 +23,7 @@ public abstract class Reponse implements Serializable {
|
||||
|
||||
@OneToOne
|
||||
private Question question;
|
||||
public List<String> reponses;
|
||||
public List<String> reponses = new ArrayList<String>();
|
||||
|
||||
public String valHTML(){
|
||||
return "";
|
||||
|
||||
@@ -5,6 +5,8 @@ import java.util.Map;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
@@ -14,6 +16,7 @@ import org.springframework.web.bind.annotation.ResponseBody;
|
||||
|
||||
import sample.data.jpa.metier.Choix;
|
||||
import sample.data.jpa.metier.Question;
|
||||
import sample.data.jpa.metier.Reponse;
|
||||
import sample.data.jpa.metier.ReponseCourte;
|
||||
import sample.data.jpa.service.QuestionDao;
|
||||
|
||||
@@ -67,57 +70,90 @@ public class QuestionController {
|
||||
return "Question "+id+" succesfully updated! : " + q.getEnonce();
|
||||
}
|
||||
|
||||
@RequestMapping("/getReponse")
|
||||
@GetMapping("/getAll")
|
||||
@ResponseBody
|
||||
public String getReponse(int id) {
|
||||
public String getAll(){
|
||||
try {
|
||||
Question question = qDao.findById(id).get();
|
||||
List<String> results = question.getReponse().getReponses();
|
||||
List<Question> questions = qDao.findAll();
|
||||
String res = "[";
|
||||
for(int i = 0; i < results.size(); i++){
|
||||
res+=results.get(i);
|
||||
if(i<results.size()-1){
|
||||
for(int i = 0; i < questions.size(); i++){
|
||||
res+=questions.get(i).getId();
|
||||
if(i<questions.size()-1){
|
||||
res+=",";
|
||||
}
|
||||
else res+="]";
|
||||
}
|
||||
return (results != null)
|
||||
? "Réponse de la question " + id + " : " + res
|
||||
: "Aucune réponse trouvée pour la question " + id;
|
||||
res+="]";
|
||||
return res;
|
||||
} catch (Exception ex) {
|
||||
return "Erreur lors de la récupération des question : " + ex.toString();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@GetMapping("/getReponses/{id}")
|
||||
@ResponseBody
|
||||
public String getReponses(@PathVariable("id") int id) {
|
||||
try {
|
||||
Question question = qDao.findById(id).get();
|
||||
Reponse rep = question.getReponse();
|
||||
if(rep != null){
|
||||
List<String> reponses = rep.getReponses();
|
||||
String res = "[";
|
||||
for(int i = 0; i < reponses.size(); i++){
|
||||
res+=reponses.get(i);
|
||||
if(i<reponses.size()-1){
|
||||
res+=",";
|
||||
}
|
||||
}
|
||||
res+="]";
|
||||
return "Réponse de la question " + id + " : " + res;
|
||||
}
|
||||
else return "Réponse non initialisée pour la question : " + id;
|
||||
} catch (Exception ex) {
|
||||
return "Erreur lors de la récupération de la réponse : " + ex.toString();
|
||||
}
|
||||
}
|
||||
|
||||
@RequestMapping("/addReponse")
|
||||
@PutMapping("/addReponse/{id}")
|
||||
@ResponseBody
|
||||
public String addReponse(int id, String reponse) {
|
||||
public String addReponse(@PathVariable("id") int id, @RequestBody Map<String, String> body) {
|
||||
try {
|
||||
Question question = qDao.findById(id).get();
|
||||
question.getReponse().getReponses().add(reponse);
|
||||
qDao.save(question);
|
||||
return "Réponse correcte \"" + reponse + "\" ajoutée à la question " + id;
|
||||
Reponse rep = question.getReponse();
|
||||
if(rep != null){
|
||||
String reponse = body.get("reponse");
|
||||
rep.getReponses().add(reponse);
|
||||
qDao.save(question);
|
||||
return "Réponse correcte \"" + reponse + "\" ajoutée à la question " + id;
|
||||
}
|
||||
else return "Reponse non itialisée pour la question : " + id;
|
||||
} catch (Exception ex) {
|
||||
return "Erreur lors de l'ajout de la réponse : " + ex.toString();
|
||||
}
|
||||
}
|
||||
|
||||
@RequestMapping("/deleteReponse")
|
||||
@PutMapping("/deleteReponse/{id}")
|
||||
@ResponseBody
|
||||
public String deleteReponses(int id, String reponse) {
|
||||
public String deleteReponses(@PathVariable("id") int id, @RequestBody Map<String, String> body) {
|
||||
try {
|
||||
Question question = qDao.findById(id).get();
|
||||
question.getReponse().getReponses().remove(reponse);
|
||||
qDao.save(question);
|
||||
return "Réponses supprimées de la question " + id;
|
||||
Reponse rep = question.getReponse();
|
||||
if(rep != null){
|
||||
String reponse = body.get("reponse");
|
||||
rep.getReponses().remove(reponse);
|
||||
qDao.save(question);
|
||||
return "Réponses \"" + reponse + "\" supprimées de la question " + id;
|
||||
}
|
||||
else return "Rien à supprimer, reponse non itialisée pour la question : " + id;
|
||||
} catch (Exception ex) {
|
||||
return "Erreur lors de la suppression des réponses : " + ex.toString();
|
||||
}
|
||||
}
|
||||
|
||||
@RequestMapping("/setReponseChoix")
|
||||
@PutMapping("/setReponseChoix/{id}")
|
||||
@ResponseBody
|
||||
public String setReponseChoix(int id) {
|
||||
public String setReponseChoix(@PathVariable("id") int id) {
|
||||
try {
|
||||
Question question = qDao.findById(id).get();
|
||||
question.setReponse(new Choix());
|
||||
@@ -128,9 +164,9 @@ public class QuestionController {
|
||||
}
|
||||
}
|
||||
|
||||
@RequestMapping("/setReponseCourte")
|
||||
@PutMapping("/setReponseCourte/{id}")
|
||||
@ResponseBody
|
||||
public String setReponseCourte(int id) {
|
||||
public String setReponseCourte(@PathVariable("id") int id) {
|
||||
try {
|
||||
Question question = qDao.findById(id).get();
|
||||
question.setReponse(new ReponseCourte());
|
||||
@@ -141,27 +177,51 @@ public class QuestionController {
|
||||
}
|
||||
}
|
||||
|
||||
@RequestMapping("/updateChoix")
|
||||
@PutMapping("/addChoix/{id}")
|
||||
@ResponseBody
|
||||
public String addChoix(int id, String choix) {
|
||||
public String addChoix(@PathVariable("id") int id, @RequestBody Map<String, String> body) {
|
||||
try {
|
||||
Question question = qDao.findById(id).get();
|
||||
if (question.getReponse() instanceof Choix) {
|
||||
String choix = body.get("choix");
|
||||
((Choix) question.getReponse()).getChoix().add(choix);
|
||||
qDao.save(question);
|
||||
return "Choix \"" + choix + "\" ajouté à la question " + id;
|
||||
}
|
||||
else return "Erreur : la réponse doit être a choix multiple.";
|
||||
|
||||
|
||||
return "Choix \"" + choix + "\" ajouté à la question " + id;
|
||||
} catch (Exception ex) {
|
||||
return "Erreur lors de l'ajout du choix : " + ex.toString();
|
||||
}
|
||||
}
|
||||
|
||||
@RequestMapping("/delete")
|
||||
@GetMapping("/getChoix/{id}")
|
||||
@ResponseBody
|
||||
public String delete(int id) {
|
||||
public String getChoix(@PathVariable("id") int id) {
|
||||
try {
|
||||
Question question = qDao.findById(id).get();
|
||||
if (question.getReponse() instanceof Choix) {
|
||||
List<String> choix = ((Choix) question.getReponse()).getChoix();
|
||||
String res = "[";
|
||||
for(int i = 0; i < choix.size(); i++){
|
||||
res+=choix.get(i);
|
||||
if(i<choix.size()-1){
|
||||
res+=",";
|
||||
}
|
||||
}
|
||||
res+="]";
|
||||
return "Choix de la question " + id + " : " + res;
|
||||
}
|
||||
else return "Erreur : la question "+id+" n'est pas a choix multiple.";
|
||||
|
||||
} catch (Exception ex) {
|
||||
return "Erreur lors de l'ajout du choix : " + ex.toString();
|
||||
}
|
||||
}
|
||||
|
||||
@DeleteMapping("/delete/{id}")
|
||||
@ResponseBody
|
||||
public String delete(@PathVariable("id") int id) {
|
||||
|
||||
try {
|
||||
Question q = qDao.findById(id).get();
|
||||
|
||||
@@ -3,6 +3,10 @@ package sample.data.jpa.web;
|
||||
import java.util.List;
|
||||
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.ResponseBody;
|
||||
|
||||
@@ -16,7 +20,7 @@ public class QuizzController {
|
||||
private QuizzDao qDao;
|
||||
|
||||
|
||||
@RequestMapping("/create")
|
||||
@PostMapping("/create")
|
||||
@ResponseBody
|
||||
public String create() {
|
||||
String qId = "";
|
||||
@@ -31,9 +35,9 @@ public class QuizzController {
|
||||
return "Quizz succesfully created with id = " + qId;
|
||||
}
|
||||
|
||||
@RequestMapping("/delete")
|
||||
@DeleteMapping("/delete/{id}")
|
||||
@ResponseBody
|
||||
public String delete(int id) {
|
||||
public String delete(@PathVariable("id") int id) {
|
||||
try {
|
||||
Quizz q = qDao.findById(id).get();
|
||||
qDao.delete(q);
|
||||
@@ -44,9 +48,9 @@ public class QuizzController {
|
||||
return "Quizz " + id + " succesfully deleted!";
|
||||
}
|
||||
|
||||
@RequestMapping("/addQuestion")
|
||||
@PutMapping("/addQuestion/{id}")
|
||||
@ResponseBody
|
||||
public String delete(int id, Question question) {
|
||||
public String delete(@PathVariable("id") int id, Question question) {
|
||||
try {
|
||||
Quizz q = qDao.findById(id).get();
|
||||
q.getQuestions().add(question);
|
||||
@@ -58,9 +62,9 @@ public class QuizzController {
|
||||
return "Question add from Quizz " + id;
|
||||
}
|
||||
|
||||
@RequestMapping("/deletQuestion")
|
||||
@PutMapping("/deletQuestion/{id}")
|
||||
@ResponseBody
|
||||
public String delete(int id, int qId) {
|
||||
public String delete(@PathVariable("id") int id, int qId) {
|
||||
try {
|
||||
Quizz q = qDao.findById(id).get();
|
||||
q.getQuestions().remove(qId);
|
||||
@@ -72,7 +76,7 @@ public class QuizzController {
|
||||
return "Question remove from Quizz " + id;
|
||||
}
|
||||
|
||||
@RequestMapping("/getAll")
|
||||
@PutMapping("/getAll")
|
||||
@ResponseBody
|
||||
public String getAll(){
|
||||
String res = "";
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
target/dependency/HikariCP-5.1.0.jar
Normal file
BIN
target/dependency/HikariCP-5.1.0.jar
Normal file
Binary file not shown.
BIN
target/dependency/accessors-smart-2.5.1.jar
Normal file
BIN
target/dependency/accessors-smart-2.5.1.jar
Normal file
Binary file not shown.
BIN
target/dependency/android-json-0.0.20131108.vaadin1.jar
Normal file
BIN
target/dependency/android-json-0.0.20131108.vaadin1.jar
Normal file
Binary file not shown.
BIN
target/dependency/angus-activation-2.0.2.jar
Normal file
BIN
target/dependency/angus-activation-2.0.2.jar
Normal file
Binary file not shown.
BIN
target/dependency/antlr4-runtime-4.13.0.jar
Normal file
BIN
target/dependency/antlr4-runtime-4.13.0.jar
Normal file
Binary file not shown.
BIN
target/dependency/apiguardian-api-1.1.2.jar
Normal file
BIN
target/dependency/apiguardian-api-1.1.2.jar
Normal file
Binary file not shown.
BIN
target/dependency/asm-9.6.jar
Normal file
BIN
target/dependency/asm-9.6.jar
Normal file
Binary file not shown.
BIN
target/dependency/aspectjweaver-1.9.22.1.jar
Normal file
BIN
target/dependency/aspectjweaver-1.9.22.1.jar
Normal file
Binary file not shown.
BIN
target/dependency/assertj-core-3.25.3.jar
Normal file
BIN
target/dependency/assertj-core-3.25.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/attoparser-2.0.7.RELEASE.jar
Normal file
BIN
target/dependency/attoparser-2.0.7.RELEASE.jar
Normal file
Binary file not shown.
BIN
target/dependency/awaitility-4.2.2.jar
Normal file
BIN
target/dependency/awaitility-4.2.2.jar
Normal file
Binary file not shown.
BIN
target/dependency/byte-buddy-1.14.19.jar
Normal file
BIN
target/dependency/byte-buddy-1.14.19.jar
Normal file
Binary file not shown.
BIN
target/dependency/byte-buddy-agent-1.14.19.jar
Normal file
BIN
target/dependency/byte-buddy-agent-1.14.19.jar
Normal file
Binary file not shown.
BIN
target/dependency/classmate-1.7.0.jar
Normal file
BIN
target/dependency/classmate-1.7.0.jar
Normal file
Binary file not shown.
BIN
target/dependency/content-type-2.2.jar
Normal file
BIN
target/dependency/content-type-2.2.jar
Normal file
Binary file not shown.
BIN
target/dependency/h2-2.2.224.jar
Normal file
BIN
target/dependency/h2-2.2.224.jar
Normal file
Binary file not shown.
BIN
target/dependency/hamcrest-2.2.jar
Normal file
BIN
target/dependency/hamcrest-2.2.jar
Normal file
Binary file not shown.
BIN
target/dependency/hamcrest-core-2.2.jar
Normal file
BIN
target/dependency/hamcrest-core-2.2.jar
Normal file
Binary file not shown.
BIN
target/dependency/hibernate-commons-annotations-6.0.6.Final.jar
Normal file
BIN
target/dependency/hibernate-commons-annotations-6.0.6.Final.jar
Normal file
Binary file not shown.
BIN
target/dependency/hibernate-core-6.5.2.Final.jar
Normal file
BIN
target/dependency/hibernate-core-6.5.2.Final.jar
Normal file
Binary file not shown.
BIN
target/dependency/hsqldb-2.7.2.jar
Normal file
BIN
target/dependency/hsqldb-2.7.2.jar
Normal file
Binary file not shown.
BIN
target/dependency/istack-commons-runtime-4.1.2.jar
Normal file
BIN
target/dependency/istack-commons-runtime-4.1.2.jar
Normal file
Binary file not shown.
BIN
target/dependency/jackson-annotations-2.17.2.jar
Normal file
BIN
target/dependency/jackson-annotations-2.17.2.jar
Normal file
Binary file not shown.
BIN
target/dependency/jackson-core-2.17.2.jar
Normal file
BIN
target/dependency/jackson-core-2.17.2.jar
Normal file
Binary file not shown.
BIN
target/dependency/jackson-databind-2.17.2.jar
Normal file
BIN
target/dependency/jackson-databind-2.17.2.jar
Normal file
Binary file not shown.
BIN
target/dependency/jackson-datatype-jdk8-2.17.2.jar
Normal file
BIN
target/dependency/jackson-datatype-jdk8-2.17.2.jar
Normal file
Binary file not shown.
BIN
target/dependency/jackson-datatype-jsr310-2.17.2.jar
Normal file
BIN
target/dependency/jackson-datatype-jsr310-2.17.2.jar
Normal file
Binary file not shown.
BIN
target/dependency/jackson-module-parameter-names-2.17.2.jar
Normal file
BIN
target/dependency/jackson-module-parameter-names-2.17.2.jar
Normal file
Binary file not shown.
BIN
target/dependency/jakarta.activation-api-2.1.3.jar
Normal file
BIN
target/dependency/jakarta.activation-api-2.1.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/jakarta.annotation-api-2.1.1.jar
Normal file
BIN
target/dependency/jakarta.annotation-api-2.1.1.jar
Normal file
Binary file not shown.
BIN
target/dependency/jakarta.inject-api-2.0.1.jar
Normal file
BIN
target/dependency/jakarta.inject-api-2.0.1.jar
Normal file
Binary file not shown.
BIN
target/dependency/jakarta.persistence-api-3.1.0.jar
Normal file
BIN
target/dependency/jakarta.persistence-api-3.1.0.jar
Normal file
Binary file not shown.
BIN
target/dependency/jakarta.transaction-api-2.0.1.jar
Normal file
BIN
target/dependency/jakarta.transaction-api-2.0.1.jar
Normal file
Binary file not shown.
BIN
target/dependency/jakarta.xml.bind-api-4.0.2.jar
Normal file
BIN
target/dependency/jakarta.xml.bind-api-4.0.2.jar
Normal file
Binary file not shown.
BIN
target/dependency/jandex-3.1.2.jar
Normal file
BIN
target/dependency/jandex-3.1.2.jar
Normal file
Binary file not shown.
BIN
target/dependency/jaxb-core-4.0.5.jar
Normal file
BIN
target/dependency/jaxb-core-4.0.5.jar
Normal file
Binary file not shown.
BIN
target/dependency/jaxb-runtime-4.0.5.jar
Normal file
BIN
target/dependency/jaxb-runtime-4.0.5.jar
Normal file
Binary file not shown.
BIN
target/dependency/jboss-logging-3.5.3.Final.jar
Normal file
BIN
target/dependency/jboss-logging-3.5.3.Final.jar
Normal file
Binary file not shown.
BIN
target/dependency/jcip-annotations-1.0-1.jar
Normal file
BIN
target/dependency/jcip-annotations-1.0-1.jar
Normal file
Binary file not shown.
BIN
target/dependency/json-path-2.9.0.jar
Normal file
BIN
target/dependency/json-path-2.9.0.jar
Normal file
Binary file not shown.
BIN
target/dependency/json-smart-2.5.1.jar
Normal file
BIN
target/dependency/json-smart-2.5.1.jar
Normal file
Binary file not shown.
BIN
target/dependency/jsonassert-1.5.3.jar
Normal file
BIN
target/dependency/jsonassert-1.5.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/jul-to-slf4j-2.0.16.jar
Normal file
BIN
target/dependency/jul-to-slf4j-2.0.16.jar
Normal file
Binary file not shown.
BIN
target/dependency/junit-4.13.2.jar
Normal file
BIN
target/dependency/junit-4.13.2.jar
Normal file
Binary file not shown.
BIN
target/dependency/junit-jupiter-5.10.3.jar
Normal file
BIN
target/dependency/junit-jupiter-5.10.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/junit-jupiter-api-5.10.3.jar
Normal file
BIN
target/dependency/junit-jupiter-api-5.10.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/junit-jupiter-engine-5.10.3.jar
Normal file
BIN
target/dependency/junit-jupiter-engine-5.10.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/junit-jupiter-params-5.10.3.jar
Normal file
BIN
target/dependency/junit-jupiter-params-5.10.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/junit-platform-commons-1.10.3.jar
Normal file
BIN
target/dependency/junit-platform-commons-1.10.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/junit-platform-engine-1.10.3.jar
Normal file
BIN
target/dependency/junit-platform-engine-1.10.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/lang-tag-1.7.jar
Normal file
BIN
target/dependency/lang-tag-1.7.jar
Normal file
Binary file not shown.
BIN
target/dependency/log4j-api-2.23.1.jar
Normal file
BIN
target/dependency/log4j-api-2.23.1.jar
Normal file
Binary file not shown.
BIN
target/dependency/log4j-to-slf4j-2.23.1.jar
Normal file
BIN
target/dependency/log4j-to-slf4j-2.23.1.jar
Normal file
Binary file not shown.
BIN
target/dependency/logback-classic-1.5.7.jar
Normal file
BIN
target/dependency/logback-classic-1.5.7.jar
Normal file
Binary file not shown.
BIN
target/dependency/logback-core-1.5.7.jar
Normal file
BIN
target/dependency/logback-core-1.5.7.jar
Normal file
Binary file not shown.
BIN
target/dependency/lombok-1.18.42.jar
Normal file
BIN
target/dependency/lombok-1.18.42.jar
Normal file
Binary file not shown.
BIN
target/dependency/micrometer-commons-1.13.3.jar
Normal file
BIN
target/dependency/micrometer-commons-1.13.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/micrometer-observation-1.13.3.jar
Normal file
BIN
target/dependency/micrometer-observation-1.13.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/mockito-core-5.11.0.jar
Normal file
BIN
target/dependency/mockito-core-5.11.0.jar
Normal file
Binary file not shown.
BIN
target/dependency/mockito-junit-jupiter-5.11.0.jar
Normal file
BIN
target/dependency/mockito-junit-jupiter-5.11.0.jar
Normal file
Binary file not shown.
BIN
target/dependency/mysql-connector-j-8.3.0.jar
Normal file
BIN
target/dependency/mysql-connector-j-8.3.0.jar
Normal file
Binary file not shown.
BIN
target/dependency/nimbus-jose-jwt-9.37.3.jar
Normal file
BIN
target/dependency/nimbus-jose-jwt-9.37.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/oauth2-oidc-sdk-9.43.4.jar
Normal file
BIN
target/dependency/oauth2-oidc-sdk-9.43.4.jar
Normal file
Binary file not shown.
BIN
target/dependency/objenesis-3.3.jar
Normal file
BIN
target/dependency/objenesis-3.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/opentest4j-1.3.0.jar
Normal file
BIN
target/dependency/opentest4j-1.3.0.jar
Normal file
Binary file not shown.
BIN
target/dependency/slf4j-api-2.0.16.jar
Normal file
BIN
target/dependency/slf4j-api-2.0.16.jar
Normal file
Binary file not shown.
BIN
target/dependency/snakeyaml-2.2.jar
Normal file
BIN
target/dependency/snakeyaml-2.2.jar
Normal file
Binary file not shown.
BIN
target/dependency/spring-aop-6.1.12.jar
Normal file
BIN
target/dependency/spring-aop-6.1.12.jar
Normal file
Binary file not shown.
BIN
target/dependency/spring-aspects-6.1.12.jar
Normal file
BIN
target/dependency/spring-aspects-6.1.12.jar
Normal file
Binary file not shown.
BIN
target/dependency/spring-beans-6.1.12.jar
Normal file
BIN
target/dependency/spring-beans-6.1.12.jar
Normal file
Binary file not shown.
BIN
target/dependency/spring-boot-3.3.3.jar
Normal file
BIN
target/dependency/spring-boot-3.3.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/spring-boot-autoconfigure-3.3.3.jar
Normal file
BIN
target/dependency/spring-boot-autoconfigure-3.3.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/spring-boot-starter-3.3.3.jar
Normal file
BIN
target/dependency/spring-boot-starter-3.3.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/spring-boot-starter-aop-3.3.3.jar
Normal file
BIN
target/dependency/spring-boot-starter-aop-3.3.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/spring-boot-starter-data-jpa-3.3.3.jar
Normal file
BIN
target/dependency/spring-boot-starter-data-jpa-3.3.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/spring-boot-starter-jdbc-3.3.3.jar
Normal file
BIN
target/dependency/spring-boot-starter-jdbc-3.3.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/spring-boot-starter-json-3.3.3.jar
Normal file
BIN
target/dependency/spring-boot-starter-json-3.3.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/spring-boot-starter-logging-3.3.3.jar
Normal file
BIN
target/dependency/spring-boot-starter-logging-3.3.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/spring-boot-starter-oauth2-client-3.3.3.jar
Normal file
BIN
target/dependency/spring-boot-starter-oauth2-client-3.3.3.jar
Normal file
Binary file not shown.
Binary file not shown.
BIN
target/dependency/spring-boot-starter-security-3.3.3.jar
Normal file
BIN
target/dependency/spring-boot-starter-security-3.3.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/spring-boot-starter-test-3.3.3.jar
Normal file
BIN
target/dependency/spring-boot-starter-test-3.3.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/spring-boot-starter-thymeleaf-3.3.3.jar
Normal file
BIN
target/dependency/spring-boot-starter-thymeleaf-3.3.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/spring-boot-starter-tomcat-3.3.3.jar
Normal file
BIN
target/dependency/spring-boot-starter-tomcat-3.3.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/spring-boot-starter-web-3.3.3.jar
Normal file
BIN
target/dependency/spring-boot-starter-web-3.3.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/spring-boot-test-3.3.3.jar
Normal file
BIN
target/dependency/spring-boot-test-3.3.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/spring-boot-test-autoconfigure-3.3.3.jar
Normal file
BIN
target/dependency/spring-boot-test-autoconfigure-3.3.3.jar
Normal file
Binary file not shown.
BIN
target/dependency/spring-context-6.1.12.jar
Normal file
BIN
target/dependency/spring-context-6.1.12.jar
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user