IT INFO

MVC 용어 SVO APP BIZ DQM DEM DAO DVO VO CFG 정리 요약

OPENLUNCH 2023. 7. 15. 03:51
반응형

소프트웨어 설계 또는 디자인할 때 필요한 세 가지 구성요소가 있습니다.

MVC로 모델(Model), 뷰(View), 컨트롤러(Controller)를 말합니다.

MVC : Model View Controller

모델은 데이터 및 비즈니스 로직(이론)을 관리합니다.

뷰는 레이아웃 및 표시를 처리합니다.

컨트롤러는 명령을 모델 및 뷰로 라우팅(전송 경로 지정) 합니다.

 

이어서 MVC 관련 용어를 요약정리해 보았습니다.

SVO: Service Value Object

서비스 가치 개체

APP: Application

응용 프로그램

BIZ: Bbusiness

비즈니스

DQM: Data Query Module

데이터 쿼리 모듈

DEM: Data Elementary Module

데이터 기본 모듈

DAO: Data Access Object

데이터 액세스 개체

DVO: Data Value Object

데이터 값 개체

VO: Value Object

값 객체

CFG: Configuration

구성


MVC 관련 영문 요약과 관련 링크는 아래에 남겨보았습니다.

The three parts of the MVC software-design pattern can be described as follows:

Model: Manages data and business logic.

View: Handles layout and display.

Controller: Routes commands to the model and view parts.

 

https://developer.mozilla.org/en-US/docs/Glossary/MVC

 

 

MVC - MDN Web Docs Glossary: Definitions of Web-related terms | MDN

MVC (Model-View-Controller) is a pattern in software design commonly used to implement user interfaces, data, and controlling logic. It emphasizes a separation between the software's business logic and display. This "separation of concerns" provides for a

developer.mozilla.org

 

반응형