[최혜진] 2024 GDG Spring Advanced Study - 9주차 #61
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
📒 개요
chapter 8. 스프링이란 무엇인가?
👀 새롭게 배운 점
📍 추가적인 질문
Q. 비지니스와 애플리케이션 로직의 복잡함을 상대하는 전략이 과거와 현재 어떻게 바꼈나?
답안
과거 → 비지니스 로직의 상당 부분을 DB에 두는 것이 유행 SQL 을 통해 비지니스 로직을 표현하고, DB에서 동작하는 저장 프로시저를 통해 핵심 로직을 처리하는 경우가 많았다.현재 →비지니스 로직은 애플리케이션 안에서 처리하도록 만드는 추세다.
DB는 단지 데이터의 영구 저장과 복잡한 조건을 가진 검색과 같은 자체적으로 특화된 기능에만 활용, 데이터를 분석/가공에 따라 로직을 처리하는 부분은 확장하기 쉽고, 비용도 싼 애플리케이션 서버 쪽으로 이동