Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 884 Bytes

File metadata and controls

26 lines (17 loc) · 884 Bytes

This is a simple REST API server using Spring and MongoDB It is made to be used as a template for developing backend during Hackathons

This project has implemented simple CRUD on users for reference. It can be modified as per use case.

It follows this order for CRUD operations - Incoming Request => controller => service => Database

How to run -

  1. mvn clean install
  2. mvn spring-boot:run

How to test - You can use multiple ways to draft a request to the server

  1. Postman Tutorial - https://www.youtube.com/watch?v=cR_FqveTewo
  2. Swagger docs (This project doesn't have them)
  3. curl requests Tutorial - https://www.youtube.com/watch?v=8f9DfgRGOBo

In future, there is a possiblity of the Spring Boot version to become depreciated Please update it if the project fails to run.

This project is open to improvements and refining Wishing you the best for your hackathon !