일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- openapi3
- Spring REST Docs
- UsernamePasswordAuthenticationFilter
- cloud native
- tasklet
- OpenStack
- MFA
- gradle
- Pender
- SWAGGER
- preventdefault
- vue
- SpringBoot
- Spring Security
- Reduxpender
- Crawling
- Spring Batch
- stopPropogation
- MSA
- AuthenticatoinProvide
- T-OTP
- axios
- REACT
- cheerio
- Flyway
- Filter
- 리액트
- SpringRESTDocs
- JavaScript
- vuejs
- Today
- Total
목록OpenStack (2)
Miracle Morning, LHWN
# 먼저 Spring Web 설정을 한다. // configure/WebMvcConfiguration.java package com.spring.openstack.configure; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.EnableWebMvc; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Config..
MSA (Micro Service Architecture) 단일 프로그램을 각 컴포넌트 별로 나누어 작은 서비스의 조합으로 구축하는 방법이다. MSA 를 온라인 쇼핑몰에 적용한 예시는 아래와 같다. 각 컴포넌트는 서비스 형태로 구현되고 API 를 이용하여 타 서비스와 통신하게 된다. 각 서비스는 독립된 서버로 타 컴포넌트와 의존성이 없기 때문에 독립된 배포를 하게된다. 또한 각 컴포넌트가 독립된 서비스로 개발되어있기 때문에 부분적인 확장이 가능하다. 온라인 쇼핑몰에서 주문 서비스에 트래픽이 증가한다면 해당 서버만 확장을 해주면 된다. 다만, Monolithic Architecture 가 서비스 간의 호출이 하나의 프로세스 내에서 이루어지기 때문에 속도가 빠르지만 MSA 의 경우 서비스 간 호출을 API ..