공부/기타
비즈니스 로직?
aerhergag0
2023. 4. 7. 23:14
MVC 패턴이란, 사용자 인터페이스로부터 비즈니스 로직을 분리하여 애플리케이션의 시각적 요소나 그 이면에서 실행되는 비즈니스 로직을 서로 영향 없이 쉽게 고칠 수 있는 애플리케이션을 만들 수 있다.
Service 계층에서는 비즈니스 로직을 수행하기 위해 Repository 인스턴스를 사용할 수 있습니다.
Spring Integration is guided by the following principles:
Components should be loosely coupled for modularity and testability.
The framework should enforce separation of concerns between business logic and integration logic.
(프레임워크는 비즈니스 로직과 통합 로직 간의 관심사 분리를 시행해야 합니다)
Extension points should be abstract in nature but within well-defined boundaries to promote reuse and portability.
비즈니스 로직
데이터가 실제로 다루어지는 영역, 데이터 처리가 되는 것이라 단순히 생각했는데
그 외의 역할이 있는 걸까?