์ „์ฒด ๊ธ€

๊ฐœ๋ฐœ ์ง€์‹์„ ์Œ“๊ณ  ๊บผ๋‚ด ์“ฐ๋Š” ๋ธ”๋กœ๊ทธ์ž…๋‹ˆ๋‹ค.
*Spring Boot 3.2.1, Spring Cloud 2023.0.0 ๋ฒ„์ „์—์„œ ํ…Œ์ŠคํŠธํ•˜์˜€์Šต๋‹ˆ๋‹ค. 1. Eureka Server ์„ค์ • Micro Service๋“ค์„ ์šด์šฉํ•˜๊ฒŒ ๋  Eureka Server์— ๋Œ€ํ•œ ์„ค์ •์„ ์•Œ์•„๋ณด๋„๋ก ํ•˜๊ฒ ๋‹ค. ๋จผ์ €, netflix eureka ์˜์กด์„ฑ์„ ์ฃผ์ž…ํ•ด ์ฃผ์–ด์•ผ ํ•œ๋‹ค. ... ext { set('springCloudVersion', "2023.0.0") } dependencies { implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-server' } dependencyManagement { imports { mavenBom "org.springframework.cloud:spring-..
Spring Cloud๋Š” Micro Service Architecture๋ฅผ ์ง€์›ํ•˜๊ธฐ ์œ„ํ•œ ํ”„๋ ˆ์ž„ ์›Œํฌ์ด๋‹ค. Spring Cloud ๊ณต์‹๋ฌธ์„œ https://spring.io/projects/spring-cloud/ Spring Cloud Spring Cloud provides tools for developers to quickly build some of the common patterns in distributed systems (e.g. configuration management, service discovery, circuit breakers, intelligent routing, micro-proxy, control bus, short lived microservices and spring.io..
HTTPS๋ฅผ ์‚ฌ์šฉํ•˜๋Š” ์ด์œ ์— ๋Œ€ํ•ด ๋งŒํ™”๋กœ ํ’€์–ด๋‚ธ ์‚ฌ์ดํŠธ๊ฐ€ ์žˆ์–ด์„œ ์†Œ๊ฐœํ•˜๋ ค๊ณ  ํ•œ๋‹ค. https://howhttps.works/ko/ How HTTPS Works ๐Ÿ™€ A cat explains how HTTPS works...in a comic! ๐Ÿ˜ป howhttps.works ์—ฌ๋Ÿฌ ์–ธ์–ด๋ฅผ ์ง€์›ํ•œ๋‹ค. ํด๋ฆญํ•˜๊ณ  ์ฝ๊ธฐ ์‹œ์ž‘์„ ๋ˆ„๋ฅด๋ฉด ๋œ๋‹ค. ๋ฏธ๊ตญ์‹ ์œ ๋จธ๋ฅผ ๋‹ด์€ ์ƒํ™ฉ๊ทน ๋“ฑ์„ ํ†ตํ•ด HTTPS ์‚ฌ์šฉ ์ด์œ , ์ƒํ™ฉ๋“ค์„ ์žฌ๋ฐŒ๊ฒŒ ํ’€์–ด์„œ ์•Œ๋ ค์ค€๋‹ค. ๋‹ค ์ฝ๊ณ  ํ€ด์ฆˆ๋„ ํ’€๋ฉด ์ธ์ฆ์„œ๋„ ์ค€๋‹ค ์ด ์ธ์ฆ์„œ๋กœ ํ•  ์ˆ˜ ์žˆ๋Š” ๊ฒƒ๋“ค With your "Certificat Of Completion", you can: - Print it - Not print it - Make a photo so you can show your friends from ..
FastAPI๋Š” uvicornhttps://www.uvicorn.org/ ์˜ asgiํ”„๋กœํ† ์ฝœ์„ ์ด์šฉํ•ด์„œ ์„œ๋ฒ„๋ฅผ ์ฃผ๋กœ ์‚ฌ์šฉํ•œ๋‹ค. ๊ทธ๋ ‡๋‹ค๋ฉด Docker๋กœ ๋ฐฐํฌํ•  ๋•Œ, uvicorn์„ ์‚ฌ์šฉํ•˜๊ธฐ ์œ„ํ•œ Dockerfile์˜ ๊ตฌ์„ฑ์„ ๋ณด์ž. # python version setting FROM python:3.9 # work directory setting WORKDIR /code # requirements install COPY ./requirements.txt /code/requirements.txt # requirements install RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt # copy code COPY ./app /code/a..
[์ด์ „ ํฌ์ŠคํŒ…] RDB๋ฅผ ์‚ฌ์šฉํ•˜๋Š” ์• ํ”Œ๋ฆฌ์ผ€์ด์…˜์—์„œ ํšจ๊ณผ์ ์ธ ๋ฐ์ดํ„ฐ ์ „๋‹ฌ ๋ฐฉ๋ฒ• 2023.11.04 - [BackEnd/Spring] - [Spring] ๋ถ„์‚ฐ ์‹œ์Šคํ…œ์—์„œ ํšจ๊ณผ์ ์ธ ๋ฐ์ดํ„ฐ ์ „๋‹ฌ ๋ฐฉ๋ฒ• (1) - Transaction Outbox Pattern & Polling Publisher Pattern [์ด์ „ ํฌ์ŠคํŒ…] RabbitMQ๋ฅผ ์‚ฌ์šฉํ•˜๋Š” ์• ํ”Œ๋ฆฌ์ผ€์ด์…˜์—์„œ ํšจ๊ณผ์ ์ธ ๋ฐ์ดํ„ฐ ์ „๋‹ฌ ๋ฐฉ๋ฒ• 2023.11.10 - [BackEnd/Spring] - [Spring] ๋ถ„์‚ฐ ์‹œ์Šคํ…œ์—์„œ ํšจ๊ณผ์ ์ธ ๋ฐ์ดํ„ฐ ์ „๋‹ฌ ๋ฐฉ๋ฒ• (2) - RabbitMQ 2. Kafka๋ฅผ ์‚ฌ์šฉํ•œ ์ „๋‹ฌ ๋ฐฉ๋ฒ• 2-1. Producer Confirm ์•„๋ž˜๋Š” Producer Confirm์„ ๊ตฌํ˜„ํ•œ ํด๋ž˜์Šค์ด๋‹ค. - Spring Boot 2 ๋ฒ„์ „ @Slf4j ..
[์ด์ „ ํฌ์ŠคํŒ…] RDB๋ฅผ ์‚ฌ์šฉํ•˜๋Š” ์• ํ”Œ๋ฆฌ์ผ€์ด์…˜์—์„œ ํšจ๊ณผ์ ์ธ ๋ฐ์ดํ„ฐ ์ „๋‹ฌ ๋ฐฉ๋ฒ• 2023.11.04 - [BackEnd/Spring] - [Spring] ๋ถ„์‚ฐ ์‹œ์Šคํ…œ์—์„œ ํšจ๊ณผ์ ์ธ ๋ฐ์ดํ„ฐ ์ „๋‹ฌ ๋ฐฉ๋ฒ• (1) - Transaction Outbox Pattern & Polling Publisher Pattern 2. RabbitMQ๋ฅผ ์‚ฌ์šฉํ•œ ์ „๋‹ฌ ๋ฐฉ๋ฒ• RabbitMQ๋Š” ๊ธฐ๋ณธ์ ์œผ๋กœ AMQP(Advanced Mssage Queueing Protocol)๋ฅผ ๊ตฌํ˜„ํ•œ ๋ธŒ๋กœ์ปค๋‹ค. ์˜ˆ์ „์— ๊ณต๋ถ€ํ–ˆ๋˜ Publish/Subscribe ๋ฐฉ์‹์„ ์ง€์›ํ•œ๋‹ค. ๋˜ํ•œ, RabbitMQ๋Š” ACK(Acknowledgement) ๋ฉ”์ปค๋‹ˆ์ฆ˜์„ ๊ฐ–๊ณ ์žˆ๋‹ค. Publisher๊ฐ€ ๋ฉ”์„ธ์ง€๋ฅผ Queue์— ์ •์ƒ์ ์œผ๋กœ ๋ฐœํ–‰ํ–ˆ๋‹ค๋ฉด Producer Confirm์„, C..
ddonghyeo
๐Ÿ—ƒ๏ธ๊ฐœ๋ฐœ์Šคํƒ