spring-test August 16, 2024 Spring-Boot-Test TestContainers 개요 테스트를 수행할 때 필요한 서버를 컨테이너로 띄울 수 있다. 자바 코드로 환경을 구성할 수 있다. 해당 글에서는 데이터 베이스를 띄우는 방법을 소개한다. #test #test-containers
spring-test-context-cache August 15, 2024 Spring-Boot-Test Context Cache 테스트 중에 컨텍스트를 띄우는 테스트를 수행할 때 이를 재활용할 수 있다. 컨텍스트를 재활용할 수 있는 방법을 알아본다. #test #context
Fixture Monkey August 14, 2024 Spring-Boot-Test Fixture Monkey 코드로 보기 데이터를 표현하는 클래스들을 쉽게 검증하는 (귀차니즘을 줄여주는) 방법이 있다. #fixture-monkey #test-code
Fixture Monkey August 14, 2024 Spring-Boot-Test Fixture Monkey 개요 테스트 코드를 작성할 때 데이터를 표현하는 클래스들을 생성하기 귀찮을 것이다. 해당 라이브러리를 활용해 테스트 코드를 쉽게 작성해 보자. #fixture-monkey #test-code
RestClient July 17, 2024 Spring Boot RestClient 개요 Spring Boot 에서 쉽고 간단하게 HTTP 요청을 보낼 수 있다. 스프링6 이상에서 사용이 가능하다. 간단하게 알아본다! #RestClient #spring boot #API
event July 16, 2024 Spring Event 개요 각각의 클래스들이 얽히고 섥힐 때 추가 기능은 의존성을 더욱 복잡하게 만든다. 이러한 의존성을 이벤트로 해소할 수 있다. #event #spring event
cache July 14, 2024 Spring Cache 간단 사용 (AOP) 어노테이션의 속성만 알아도 꽤나 요긴하게 사용할 수 있다. Spring Cache 를 사용하기 위한 어노테이션들을 알아본다. 그리고 주의할 점은 AOP 를 알아야 하는 것! #cache #spring cache #AOP
cache July 14, 2024 Cache 전략 캐시를 사용하여 리소스를 줄여보자. 여러 전략들을 소개하고 해당 전략들을 조합해 상황에 맞게 올바르게 사용해보자. #cache #spring cache
spring-cloud-gateway July 12, 2024 Spring Cloud Gateway security 도메인별로 시큐리티 설정을 분리할 수 있다. spring-security-6 의 다중필터처럼 적용해보자 #spring #gateway #spring cloud gateway
spring-cloud-gateway July 12, 2024 Spring Cloud Gateway Filter gateway 의 필터를 활용해 다양한 필터들을 활용해보자 #spring #gateway #spring cloud gateway
spring-cloud-gateway July 12, 2024 Spring Cloud Gateway 시작 및 Route gateway 가 받은 요청은 각각의 micro-server 에 전달된다. 어떻게 설정할 수 있을까? #spring #gateway #spring cloud gateway
kafka July 7, 2024 카프카 컨슈머 기본 개요 카프카에서 메시지(이벤트)를 수신하는 역할을 수행하는 `consumer` 에 대해 간략하게 알아본다. #kafka #consumer #spring-boot
redis June 30, 2024 are you Redis? in-memory 의 캐시템! 레디스가 무엇이고 어떤 녀석인지 간략하게 알아본다. #redis #cache #spring cache
kafka June 30, 2024 카프카 프로듀서 기본 개요 카프카에서 메시지(이벤트)를 발송하는 역할을 수행하는 `producer` 에 대해 간략하게 알아본다. #kafka #producer #spring-boot
spring-cloud-gateway June 28, 2024 Spring Cloud Gateway 개요 MSA 를 구축할 때 대문 역할의 gateway 를 세운다. gateway 를 구현하기 위한 방법 중 spring-cloud-gateway 를 선택지로 사용할 수 있다. 간략한 개요를 설명한다. #spring #gateway #spring cloud gateway
TROUBLESHOOTING June 26, 2024 Actuator 와 테스트 코드 그리고 Mail Actuator 은 애플리케이션의 모든 정보를 알고 있다. 어떻게? #TROUBLESHOOTING
kafka June 22, 2024 docker + kafka + spring-boot App 연동하기 카프카 기본 설정, docker-compose 활용하기 #kafka #docker #zookeeper
springSecurity May 6, 2024 Spring-Security-6 다중 필터 Spring Security 는 공식 문서가 잘 정리되어 있다! #spring-security-6 #multi filter #http security
springboot April 24, 2024 Docker + Redis + SpringBoot 도커를 사용하면 간단하게 Redis 를 띄울 수 있다. 로컬 환경에서 SpringBootApp 과 연동해보자 #docker #redis #springboot
error April 22, 2024 ...can not symbol 컨테이너가 클래스를 못 찾아서 실행이 안 된다면? 인텔리제이에서 SpringBootApp 프로젝트가 빌드가 안 된다. 간단하게 해결해 보자 #bug? #spring boot application