Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- JDBC
- kotlin
- AOP
- 김영한
- QueryDSL
- Exception
- Greedy
- JPQL
- Android
- SpringBoot
- Thymeleaf
- 백준
- 알고리즘
- 인프런
- springdatajpa
- http
- 자바
- Spring Boot
- java
- 그리디
- db
- 스프링
- jpa
- spring
- pointcut
- 스프링 핵심 기능
- 스프링 핵심 원리
- transaction
- Proxy
- Servlet
Archives
- Today
- Total
목록postConstruct (1)
개발자되기 프로젝트
[빈 후처리기] 예제코드 2 - 객체 바꿔치기
1. 스프링 빈 등록과정 - 바꿔치기 객체를 바꿔치기 한다며 빈 이름은 변경되지 않고 객체만 변경된다. 2. BeanPostProcessor Interface - 스프링 제공 public interface BeanPostProcessor { Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException } 빈 후처리기를 사용하려면 BeanPostProcessor 인터페이스를 구현하고, 스프링 빈으로 등록하면 된다. postProcessBeforeI..
인프런/[인프런] 스프링 핵심 원리 - 고급
2022. 1. 2. 23:06