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
- kotlin
- transaction
- JDBC
- Servlet
- AOP
- pointcut
- Thymeleaf
- JPQL
- SpringBoot
- Proxy
- 스프링 핵심 기능
- Spring Boot
- 자바
- Exception
- Greedy
- 알고리즘
- 스프링
- java
- spring
- Android
- QueryDSL
- springdatajpa
- 인프런
- http
- db
- jpa
- 그리디
- 백준
- 김영한
- 스프링 핵심 원리
Archives
- Today
- Total
목록bean 등록 (1)
개발자되기 프로젝트
Proxy Pattern - V2
v2 - 인터페이스 없는 구체 클래스 - 스프링 빈으로 수동 등록 이번에는 인터페이스가 없는 Controller , Service , Repository 를 스프링 빈으로 수동 등록해보자. 1. OrderRepositoryV2 public class OrderRepositoryV2 { public void save(String itemId) { if(itemId.equals("ex")){ throw new IllegalStateException("예외 발생"); } sleep(1000); } private void sleep(int millis) { try { Thread.sleep(millis); } catch (InterruptedException e) { e.printStackTrace(); } }..
인프런/[인프런] 스프링 핵심 원리 - 고급
2021. 11. 23. 21:31