The application runs at http://pa165-deliveryservice.herokuapp.com/
Username: [email protected] Password: Admin123
Username: [email protected] Password: Tester123
To properly use REST layer as an example, please run in second terminal:
1. mvn clean install from root directory
2. cd rest
3. mvn tomcat7:run
To list all products:
curl -i -X GET http://localhost:8080/pa165/rest/products
To list only product with id=4:
curl -i -X GET http://localhost:8080/pa165/rest/products/4
To delete only product with id=4:
curl -i -X DELETE http://localhost:8080/pa165/rest/products/4
To change price of product with id=4:
curl -X PUT -i -H "Content-Type: application/json" --data '3' http://localhost:8080/pa165/rest/products/4/price
To change weight of product with id=4:
curl -X PUT -i -H "Content-Type: application/json" --data '45' http://localhost:8080/pa165/rest/products/4/weight
To create product:
curl -X POST -i -H "Content-Type: application/json" --data '{"name":"test2", "price":"200", "weight":"215"}' http://localhost:8080/pa165/rest/products/create