We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
service-order는 주문 관리를 위한 웹 서비스입니다. 사용자는 주문한 목록을 볼 수 있고, 각각의 주문 상태를 확인해 각각의 액션을 취할 수 있습니다.
제공하는 기능입니다.
헥사고날 아키텍처를 참고하여 구성
service-order/ ├── application/ │ ├── dto/ │ │ ├── request │ │ └── response │ ├── port/ │ │ ├── input │ │ └── output │ └── service ├── domain/ │ ├── event │ ├── exception │ ├── model │ └── repository └── infrastructure/ ├── adapter/ │ ├── input/ │ │ ├── controller │ │ ├── converter │ │ ├── messaging.consumer │ │ └── validator │ └── output/ │ ├── feign │ ├── messaging.producer │ └── persistence └── configuration