You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 10, 2019. It is now read-only.
The domain package should have classes that are only responsible for domain logic. This layer is agnostic of
web, data stores (PostGres, Redis) or messaging (Kafka).
The persistence package is responsible for adapting the domain models to data store specific representations and
vice-versa. Interactions to other HTTP services via RestTemplate are also done using the Repository pattern.
The dto package houses the request and response classes from upstream services.
The web package is responsible for adapting the domain models to web contract classes and vice-versa.
Exceptions raised by the domain layer are transformed by error adapters to web contract specific error responses.