Java Web application using my own REST API (Web services)
++++++++++++++++++++++++++++++++
I created a real estate calculator that takes different factors into consideration such as interest rate,
amortization period, purchase price, downpayment, and targeted potential profit.
Front-end: HTML, CSS, Bootstrap and some JS.
Back-end: Maven project with REST architecture and Java Jersey.
This app was deployed locally using a Payara glassfish server 6 (6.2.3)
I used Digital Ocean for my hosting services, using Ubuntu linux console.
More details:
The form data is sent to my HTTP endpoint, this HTTP GET method
connects to my Java class, and all calculations are done in that class.
Then the HTTP GET method fetches the final results from my Java Class and returns them to the client
in the form of HTML.


