Spring Framework/Spring boot

Spring Framework/Spring boot

Spring BeanFactoryPostProcessor로 글로벌 @Lazy 설정 및 Bean 초기화하기

2025.01.21 - [Spring Framework/Spring boot] - Spring Boot @Lazy를 사용한 Bean 지연 초기화하기 Spring Boot @Lazy를 사용한 Bean 지연 초기화하기Spring JPA를 통해 Entity 클래스를 설정하면서 지연로딩이라는 단어를 많이 들어봤을 것입니다.이번 글에서는 Bean Class를 Lazy Loading 하여, 사용하지 전까지 ApplicationContext에 초기화하지 않는 방법에kylo8.tistory.com 위 글에서는 특정 빈 클래스를 Lazy 설정하는 방법에 대해 작성했습니다. 간단히 @Lazy 어노테이션을 통해 빈 초기화 시점을 늦추는 식으로 처리했습니다. 이번 글에서는 BeanFactoryPostProcessor 인터페이..

Spring Framework/Spring boot

Spring Boot @Lazy를 사용한 Bean 지연 초기화하기

Spring JPA를 통해 Entity 클래스를 설정하면서 지연로딩이라는 단어를 많이 들어봤을 것입니다.이번 글에서는 Bean Class를 Lazy Loading 하여, 사용하지 전까지 ApplicationContext에 초기화하지 않는 방법에 대해 작성하겠습니다. Lazy란기본적으로 애플리케이션을 실행하면 ApplicationContext에 설정한 모든 bean이 생성되고 해당 bean의 종속성이 주입됩니다. 그에 반해, Lazy bean 정의가 구성된 경우 해당 bean은 사용할 때까지 생성되지 않고 종속성이 주입되지 않습니다.즉, 사용하기 전까지 ApplicationContext에 초기화하는 것을 지연한다! Lazy Initialization 설정을 통해 애플리케이션 시작 시 로드되는 클래스와 생성..

Spring Framework/Spring boot

스프링부트 @SpringBootTest, @ContextConfiguration, @WebMvcTest, @AutoConfigureMockMvc 주요 테스트 어노테이션 정리

스프링 부트를 기반으로 테스트 코드 작성 시 자주 등장하는 테스트 어노테이션의 사용 상황과 기능에 대해 정리하고자 합니다. @SpringBootTest 어노테이션Annotation that can be specified on a test class that runs Spring Boot Based tests. @SpringBootTest 어노테이션은 스프링 부트 기반 테스트 시에 사용하는 어노테이션이다. 다음과 같은 기능과 특징을 가지고 있습니다. 1. Uses SpringBootContextLoader as the default ContextLoader when no specific @ContextConfiguration(loader=...) is defined. 💬 특정 @ContextConfigu..

Spring Framework/Spring boot

Spring Boot Open-In-View 설정과 데이터베이스 성능 최적화, 영속성 컨텍스트 활용법

OSIV - Open Session In ViewOSIV OnJPA에서 Entity Manager가 Hibernate에서 Session 역할을 수행합니다.spring.jpa.open-in-view: true (default)OSIV 전략은 트랜잭션 시작처럼 최초 데이터베이스 커넥션 시작 시점부터 API 응답이 끝날 때까지 영속성 컨텍스트와 데이터베이스 커넥션을 유지합니다. (Lazy Loading…) 지연 로딩은 영속성 컨텍스트가 살아있어야 가능합니다. (영속성 컨텍스트는 기본적으로 데이터베이스 커넥션을 유지합니다.)OSIV가 on인 경우에 Service 계층에서 @Trasanctional이 끝나도 데이터베이스 커넥션이 끊기지 않는다. 지연로딩과 같이 프록시 객체가 초기화되는 경우가 있으므로 사용자에게 ..

kylo
'Spring Framework/Spring boot' 카테고리의 글 목록 (4 Page)