A Rest API developed as example for a Tech Talk
This is a base application, created using Spring Initializr and with the base configuration defined
Create an Rest API that you could:
- Create and find a
hero
withname
andskills(name, power)
- Create a
hero battle
withwinner hero
,loser hero
,timestamp
- The
winner hero
is the one withgreater power
, the sum of allskills power
- The
You could use this repository as base to develop the application. Here, we already have developed the Hero endpoints
- Intellij IDEA
- Docker
Start the docker-compose running this command in:
/path/to/project docker-compose up -d
- DDD
- Rest API
- Unit Tests
- Integration Tests