gpt4 book ai didi

spring - Spring Boot应用中service层有什么用?

转载 作者:行者123 更新时间:2023-12-03 16:06:39 25 4
gpt4 key购买 nike

我是 Spring Boot 的新手,我正在创建一个没有 UI 的 RESTful API。

我在想是否应该使用业务服务并从那里调用存储库,还是直接从我的 REST Controller 调用存储库?

最佳答案

服务层不是 Spring Boot 独有的概念。它是一个软件架构术语,经常被称为模式。简单的应用程序可以跳过服务层。实际上,没有什么能阻止您从 Controller 层调用存储库方法。

但是,我强烈建议使用服务层,因为它主要用于定义应用程序边界。服务层职责包括(但不限于):

  • 封装业务逻辑实现;
  • 集中数据访问;
  • 定义事务开始/结束的位置。

  • 引用 Service Layer pattern来自 Martin Fowler 的 Catalog of Patterns of Enterprise Application Architecture :

    A Service Layer defines an application's boundary and its set of available operations from the perspective of interfacing client layers. It encapsulates the application's business logic, controlling transactions and coor-dinating responses in the implementation of its operations.

    关于spring - Spring Boot应用中service层有什么用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58234187/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com