-
Notifications
You must be signed in to change notification settings - Fork 87
guide dataaccess layer
|
Warning
|
Hey there! Seems like you are still using the documentation of our legacy Java repository. Since it won’t be maintained anymore, we recommend you to checkout the new Java page here. |
The data-access layer is responsible for all outgoing connections to access and process data. This is mainly about accessing data from a persistent data-store. External system could also be accessed from the data-access layer if they match this definition, e.g. a mongo-db via rest services.
Note: In the modern project structure, this layer is replaced by the domain layer.
You need to make your choice for a database. Options are documented here.
The classical approach is to use a Relational Database Management System (RDMS). In such a case, we strongly recommend to follow our JPA Guide. Some NoSQL databases are supported by spring-data so you can consider the repository guide.
This documentation is licensed under the Creative Commons License (Attribution-NoDerivatives 4.0 International).
