https://github.com/ullenius/fresh-curry
:currency_exchange: :curry:Java 11 fork of RestCurry. A simple REST client for receiving up to date currency exchange rates. Parses JSON to POJOs. Uses Java's new HttpClient
https://github.com/ullenius/fresh-curry
currency gson java-11 json mit mit-license rest
Last synced: 10 months ago
JSON representation
:currency_exchange: :curry:Java 11 fork of RestCurry. A simple REST client for receiving up to date currency exchange rates. Parses JSON to POJOs. Uses Java's new HttpClient
- Host: GitHub
- URL: https://github.com/ullenius/fresh-curry
- Owner: ullenius
- License: mit
- Created: 2019-02-14T16:33:55.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-14T17:01:22.000Z (over 7 years ago)
- Last Synced: 2024-11-08T10:50:38.891Z (over 1 year ago)
- Topics: currency, gson, java-11, json, mit, mit-license, rest
- Language: Java
- Homepage:
- Size: 77.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Fresh Curry
A Java 11 fork of Rest Curry. A simple REST client for receiving up to date currency exchange rates.
Uses Java 11's brand new HTTP-client.
Obtains currency exchange rates in JSON-format from server using
REST and stores them as a POJO (plain old java object).
Made as a school exercise for ITHS' course on web
services in 2019. The porting (fork) to Java 11 was made on 2019-02-14
## Building
* Fresh Curry requires Java 11
* This is a Maven project:
* build a jar-file:
```
mvn package
```
* build documentation:
```
mvn javadoc:javadoc
## Rest API
https://exchangeratesapi.io/
Thanks to Madis Väin (EST) for the API :)
## Libraries
Uses Google's Gson-library.