최근 포스트
Kotlin Springgateway Circuitebreak
add dependency dependency library 를 추가 ```xml org.springframework.cloud spring-cloud-starter-circuitbreaker-reactor-resilience4j ``` Declar...
Kotlin - companion object란
Redis 기반 Rate Limiter Spring Cloud Gateway에서는 Redis를 사용한 Rate Limiter 구현을 지원합니다. Redis는 캐시 기반의 저장 시스템으로, Rate Limiter의 구현에 적합합니다. 이 구현은 Stripe 팀의 작업을 기반으로 하고...
Kotlin Springgateway Filter
참고 돌머리에 각인을 - spring cloud gateway - 기능 간단 살펴보기 어제보다 오늘 더 - Spring Cloud Gateway - Filter추가하기 Java칩 프라푸치노 - Filter, OrderedGatewayFilter
Kotlin 기반 RestControllerAdvice
kotlin 기반 springboot 에서 Runtimetime Error 처리 kotlin 기반 springboot 에서 Runtimetime Error 처리를 RestControlerAdvice로 처리하는 방법을 설명합니다.
Kotlin - companion object란
kotlin에서 companion object란 kotlin 기반 springboot 에서 Runtimetime Error 처리를 RestControlerAdvice로 처리하는 방법을 설명합니다.
Mashup 이란
Mashup이란? Mashup은 여러 개의 서로 다른 소스에서 제공하는 데이터를 결합하여 새로운 애플리케이션이나 서비스를 만드는 기술을 의미합니다. Mashup은 다양한 API, 데이터 소스, 웹 서비스 등을 조합하여 기존에 없던 새로운 기능을 제공할 수 있도록 합니다.
한글입력 on ubuntu 24.x arm
ubuntu 24.x에서 한글을 입력하는 설정입니다.
install vscode on ubuntu arm
install vscode curl -L https://aka.ms/linux-arm64-deb > code_arm64.deb sudo apt install ./code_arm64.deb
install docker and docker-compose on ubuntu arm
install docker sudo snap install docker sudo apt install docker-compose
테스트케이스란
테스트케이스는 특정 기능이 올바르게 동작하는지 확인하기 위한 입력 실행조건 예상결과 를 정의한 문서 또는 코드입니다.
Git 마스터하기 - revert hands-on 가이드
Git Revert Hands-on 가이드 Git Revert란? Git에서 revert 명령어는 특정 커밋을 되돌리는 방법입니다. 하지만 reset과 달리 Git의 히스토리를 보존하며, 새로운 “되돌림” 커밋을 생성합니다. 협업 환경에서 안전하게 커밋을 취소하려는 경우에 유용...