ZDenizYStenhaug / swe573-Project

Project repository for SWE573 - Software Development Practice
0 stars 0 forks source link

Spring backend #15

Closed ZDenizYStenhaug closed 2 years ago

ZDenizYStenhaug commented 2 years ago

Set up a spring boot backend that can communicate with the postgres database.

For testing, it should have a Service class, methods and endpoints for creating and displaying a service.

This functionality can be tested using Postman before the angular frontent is set up.

ZDenizYStenhaug commented 2 years ago

Springboot backend is done. Changed the name of the Service class to Offer (so that we don't have classes called ServiceService under the service module) Some endpoints for creating, finding by id , updating and deleting offers were added. They all work as expected according to some tests performed through postman. It writes to the database using JPA and hibernate.

ZDenizYStenhaug commented 2 years ago

The initial commit of the project can be found in the "backend-main" branch.