mvn package spring-boot:repackage java -jar target/hotel-booking-1.0-SNAPSHOT.jar
localhost:8080
GET /hotels/
RESPONSE {"hotels":[{"id":1,"name":"Hotel Lozano"},{"id":2,"name":"Hotel Non Stop "},{"id":3,"name":"Grand Route"},{"id":4,"name":"Beach Hotel"}],"limit":100,"offset":0,"total":4}
GET /hotels/1/
RESPONSE {"id":1,"name":"Hotel Lozano"}
GET /hotels/{hotelId}/reservation
RESPONSE
POST /hotels/{hotelId}/reservation {"id":1,"price":1,"user_id":1}
RESPONSE {"id":1,"price":1,"user_id":1}
GET /hotels/{hotelId}/reservation/{reservationId}
RESPONSE {"id":1,"price":1,"user_id":1}
PUT /hotels/{hotelId}/reservation/{reservationId} {"id":1,"price":1,"user_id":1}
RESPONSE {"id":1,"price":1,"user_id":1}
DELETE /hotels/{hotelId}/reservation/{reservationId} {"id":1,"price":1,"user_id":1}
RESPONSE {"id":1,"price":1,"user_id":1}