# bar-management-system
Java EE course project
------------------------------------------------------------------------------------
This README can serve as file for instructions for all contributors to this project.
Feel free to edit/add things that will help the others.
------------------------------------------------------------------------------------
Git stuff
-------------------------------------------------------------------------------------
Always pull before starting to work on some task.
In case git pull is not possible and you can not resolve that issue, you can use:
-git fetch origin
-git reset --hard origin/master
WARNING: As stated, this will throw away your local changes and overwrite with whatever is on the origin.
--------------------------------------------------------------------------------------
Rest stuff
--------------------------------------------------------------------------------------
If you have difficulties calling rest servicec - try this way:
http://localhost:8080/BarManagementSystem/ + ApplicationPath(find in class that implements Application) + Path to your class/method
Example - http://localhost:8080/BarManagementSystem/rest/resources/number
--------------------------------------------------------------------------------------