call service vs dao from another service

前端 未结 2 606
夕颜
夕颜 2021-02-06 07:10

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

相关标签:
2条回答
  • 2021-02-06 07:40

    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.

    0 讨论(0)
  • 2021-02-06 07:42

    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

    1. 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.

    2. 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 )

    0 讨论(0)
提交回复
热议问题