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 | 29 | 30 | 31 |
Tags
- QueryDSL
- 백준
- 스프링 핵심 원리
- 자바
- 김영한
- 스프링
- SpringBoot
- pointcut
- Thymeleaf
- 알고리즘
- Android
- AOP
- java
- Greedy
- 인프런
- db
- transaction
- spring
- springdatajpa
- Exception
- jpa
- Spring Boot
- JDBC
- 스프링 핵심 기능
- Proxy
- http
- JPQL
- Servlet
- 그리디
- kotlin
Archives
- Today
- Total
목록@Bean (1)
개발자되기 프로젝트
빈 생명주기 : @Bean(initMethod, destroyMethod)
설정 정보에 초기화, 소멸 메서드 지정이 가능하다. @Bean(initMethod = " ~", destoryMethod = " ~~") 1. @Bean 등록 public class BeanLifeCycleTest { @Test public void lifeCycleTest(){ AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(LifeCycleConfig.class); NetworkClient client = ac.getBean(NetworkClient.class); ac.close(); } @Configuration static class LifeCycleConfig{ @Bean(initMethod = "ini..
인프런/[인프런] Spring 핵심원리 이해
2021. 7. 30. 21:23