Spring boot application using mongo db and open api specification
- Click here to view the open api specs
.
└── src
├── main
├── java
└── com.spring.product
└── controller
└── integrator
└── repository
└── service
└── ProductApplication.java
|── resources
|── test
├── java
│ └── com.simpleproject
│ └── SimpleClassTest.java
└── resources
- Install Mongo DB
- Install Mongo Compass
- Start server by copy pasting in your terminal
brew services start [email protected]
- Open Mongo Compass and paste the following in your URI
mongodb://localhost:27017
& click onConnect
- Your Mongo DB will be live on
localhost:27017
server - To stop the server, copy & paste the following in your terminal
brew services stop [email protected]
- Download Maven on windows OR copy and paste in your Mac terminal
brew install maven
- Download the project
- Open the root terminal and run
mvn clean install
- Run the application
- Application will be live on localhost:9000