-
Notifications
You must be signed in to change notification settings - Fork 2
2.1. Service 7 Person Architecture Java 1
Tran Anh Hoang edited this page Aug 7, 2022
·
1 revision
Basically the Person Service Architecture is structered in 3 Layers:
- Presentation - Layer
- Business - Layer
- Persistence - Layer
The Presentation - Layer is the first tier layer, which include the Person Service Interface. This layer will be used by the other services from the FH-App.
The Business - Layer includes the core business tier layer of our service. In this layer all the components which represent the logic, will be implemented.
The Persistence - Layer represents the access layer to the stored data.
(@author and @createdby Tran Anh Hoang)