I have User And Role entities and Service, DAO layers for them. I need Role list from UserService.
Which layer should I use from UserService? Call list method of RoleService vs RoleDAO? Which one is common use and why?
The definition of a DAO is a company that operates without any human involvement. The difference between the two is that a DAO does not have labor while a service has human labor. The difference between DAO and service is that a DAO is an organization without a central manager.
Neither Dao should access the other one. If there is some logic that needs to manipulate the two, then that has to be in your application logic, not in Data Access Layer. Address is a value type associated with Customer: In this case, address does not have a separate DAO of itself.
In your scenario, it has no impact on application flow whether you use @Service or @Repository, application will work as they are elligible for autowiring. But standard practice is to use @Repository for dao classes.
Normally DAO layer is close to database, Service layer is encapsulating your business logic, performing any transactions or other things rather than just calling DAO.
Service calling another service is more common because
Your RoleService can have some business code evaluated, you can benefit from transactions or passing messages via JMS or you can have some security on service methods in future. So separating concerns is good practice.
Easy to mock the services and test ( this can be argued even DAO can be tested), but separating business logic is good way by using service layer interfaces.
But if you dont have any business logic in service layer, you can avoid redundant code by simply using DAO (but for the future you will have a code debt for refactoring if you think of service layer business )
Call the list method in the RoleService
.
The business logic around Roles may change one day and all changes in the RoleService
to handle that will be useless for all code calling the DAO directly.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With