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
- Greedy
- Proxy
- AOP
- Spring Boot
- 스프링 핵심 기능
- 스프링 핵심 원리
- Android
- transaction
- java
- 인프런
- 백준
- JPQL
- pointcut
- Exception
- springdatajpa
- 알고리즘
- db
- kotlin
- Thymeleaf
- QueryDSL
- http
- 자바
- jpa
- Servlet
- SpringBoot
- 그리디
- JDBC
- spring
- 김영한
- 스프링
Archives
- Today
- Total
목록processor (1)
개발자되기 프로젝트
[빈 후처리기] 예제코드 1 - 일반적인 스프링 빈 등록
1. 일반적인 스프링 빈 등록 public class BasicTest { @Test void basicConfig (){ //스프링 컨테이너 ApplicationContext applicationContext = new AnnotationConfigApplicationContext(BasicConfig.class); //A는 빈으로 등록됨. A a = applicationContext.getBean("beanA", A.class); a.helloA(); //B는 스프링 빈으로 등록되지 않음. Assertions.assertThrows(NoSuchBeanDefinitionException.class, () -> applicationContext.getBean(B.class)); } @Slf4j @Conf..
인프런/[인프런] 스프링 핵심 원리 - 고급
2022. 1. 2. 22:32