Skip to content

PavelSynek/DeliveryService

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

Delivery Service

Spring MVC

The application runs at http://pa165-deliveryservice.herokuapp.com/

Admin

Username: [email protected] Password: Admin123

Customer

Username: [email protected] Password: Tester123

REST

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

REST example usage

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

Spring MVC

About

FI MUNI PA165 team project

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages