Skip to content

Latest commit

 

History

History
73 lines (65 loc) · 2.05 KB

README.md

File metadata and controls

73 lines (65 loc) · 2.05 KB

Code Convention 🍀

MeetUP C팀의 Code Convention 보러가기 ✔️


Git Convention 🍀

MeetUP C팀의 Git Convention 보러가기 ✔️


Architecture 🍀

image



Main Server Foldering 📂

📂 src
┣ 📂 java.com.kusitms.mainservice
┃  ┣ 📂 domain
┃  ┃  ┣ 📂 sample
┃  ┃  ┃  ┣ 📂 controller
┃  ┃  ┃  ┣ 📂 dto
┃  ┃  ┃  ┃  ┣ 📂 request
┃  ┃  ┃  ┃  ┣ 📂 response
┃  ┃  ┃  ┣ 📂 service
┃  ┃  ┃  ┣ 📂 domain
┃  ┃  ┃  ┣ 📂 repository
┃  ┃  ┃  ┣ 📂 mongoRepository
┃  ┣ 📂 global
┃  ┃  ┣ 📂 common
┃  ┃  ┣ 📂 config
┃  ┃  ┃  ┣ 📂 auth
┃  ┃  ┣ 📂 error
┃  ┃  ┃  ┣ 📂 dto
┃  ┃  ┃  ┣ 📂 exception
┃  ┃  ┃  ┣ 📂 handler
┣ 📂 resources
┃  ┣ application.yml
┣ MainServiceApplication.class

Socket Server Foldering 📂

📂 src
┣ 📂 java.com.kusitms.socketservice
┃  ┣ 📂 domain
┃  ┃  ┣ 📂 sample
┃  ┃  ┃  ┣ 📂 controller
┃  ┃  ┃  ┣ 📂 dto
┃  ┃  ┃  ┃  ┣ 📂 request
┃  ┃  ┃  ┃  ┣ 📂 response
┃  ┃  ┃  ┣ 📂 service
┃  ┃  ┃  ┣ 📂 domain
┃  ┃  ┃  ┣ 📂 repository
┃  ┣ 📂 global
┃  ┃  ┣ 📂 common
┃  ┃  ┃  ┣ AuthenticationInterceptor.class
┃  ┃  ┃  ┣ MessageSuccessCode.class
┃  ┃  ┃  ┣ MessageSuccessResponse.class
┃  ┃  ┣ 📂 config
┃  ┃  ┃  ┣ 📂 auth
┃  ┃  ┣ 📂 error
┃  ┃  ┃  ┣ 📂 dto
┃  ┃  ┃  ┣ 📂 httpException
┃  ┃  ┃  ┣ 📂 socketException
┃  ┃  ┃  ┣ 📂 handler
┣ 📂 resources
┃  ┣ application.yml
┣ SocketServiceApplication.class