- To deploy clone or download the application
- install mongo db
- create db called "schools"
- import the schools.json into the collection called schools
- run maven commands:
- mvn clean package
- mvn spring-boot:run
- Go url http://localhost:8080/index.html
//testing rest api curl -i http://localhost:8080/schools/search/findBySubject?subject=reading
//importing json
mongoimport --db schools --collection schools --file schools.json --jsonArray