Skip to content

POC made in Java to learn the basics of Quarkus and the differences for Spring Framework

Notifications You must be signed in to change notification settings

renatompf/poc_quarkus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

poc_quarkus

Description

poc_quarkus it's was, as the name suggested, a POC made in Quarkus for me to understand how different it was from Spring Boot.

This POC was pretty simple and only implements a GET, a POST and a DELETE method.

It was implemented using PostgreSQL as a database, and the all system it's running on Docker.

How to run it

The simple command will make the application running:

./mvnw compile quarkus:dev && docker-compose up -d postgres

Endpoints:

The application as very few endpoints:

  • GET All the persons in the system:
localhost:8080/person/
  • GET a single person in the system by his email:
localhost:8080/person/{email}
  • Add (POST request) a person in the system:
    • Takes the new person as in the body of the request
localhost:8080/person
  • DELETE a person in the system by his email:
localhost:8080/person/{email}

About

POC made in Java to learn the basics of Quarkus and the differences for Spring Framework

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages