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
Copy file name to clipboardExpand all lines: documentation/guide-structure-modern.asciidoc
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ For the modern project structure, the layers are defined by the following table:
43
43
|=============================================
44
44
|*Layer* | *«layer»* | *Description*
45
45
|link:guide-service-layer.asciidoc[service]|`service`|The service layer exposing functionality via its remote API. Typical protocol is link:guide-rest.asciidoc[REST]. May also be any other protocol you are using such as https://grpc.io/[gRPC].
46
-
|link:guide-domain-layer.asciidoc[domain]|`domain`|The domain with the data-model and DB access. Use sub-package (in `«detail»`) `repository` for link:guide-repository.asciidoc[repository] and `dao` for link:guide-dao.asciidoc[DAOs]. Also we recommend to put link:guide-jpa.asciidoc#entity[entities] in `model` sub-package.
46
+
|link:guide-dataaccess-layer.asciidoc[dataaccess]|`dataaccess`|The data-access with the entities and DB access. Use sub-package (in `«detail»`) `repository` for link:guide-repository.asciidoc[repository] and `dao` for link:guide-dao.asciidoc[DAOs]. Also we recommend to put link:guide-jpa.asciidoc#entity[entities] in `model` sub-package.
47
47
|link:guide-logic-layer.asciidoc[logic]|`logic`|The logic layer with the functionallity providing the business value.
48
48
|link:guide-common.asciidoc[common]|`common`|cross-cutting code not assigned to a technical layer.
49
49
|=============================================
@@ -57,7 +57,7 @@ we provide this architecture mapping:
0 commit comments