The Pricing Service is a REST WebService that simulates a backend that would store and retrieve the price of a vehicle given a vehicle id as input. In this project, you will convert it to a microservice.
- REST WebService integrated with Spring Boot
- Convert the Pricing Service to be a microservice.
- Add an additional test to check whether the application appropriately generates a price for a given vehicle ID
To run this service you execute:
$ mvn clean package
$ java -jar target/pricing-service-0.0.1-SNAPSHOT.jar
It can also be imported in your IDE as a Maven project.