$ cd pokedex
$ ./mvnw package && java -jar target/pokedex-0.0.1-SNAPSHOT.jar
$ docker build -t springio/pokedex-docker .
$ docker run -p 5000:5000 springio/pokedex-docker
Now from the browser, you can call the two available endpoints
And they should follow the requirements attached.
- Since those values are static, caching will work just fine here not to overload our downstreams with unnecessary requests.
- Better error handling for various HTTP codes returned from our downstreams. Currently to request any pokemon (such as unknown pokemon name) will result in 500.
- Security is well handled so far as in the Dockerfile, a new user is created for this specific app with very limited permission.
- Rate limiting on our API