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
- Thymeleaf
- 스프링 핵심 기능
- Greedy
- 인프런
- Servlet
- 스프링
- Spring Boot
- springdatajpa
- java
- SpringBoot
- 백준
- 알고리즘
- JDBC
- db
- Android
- AOP
- pointcut
- 자바
- kotlin
- Exception
- 스프링 핵심 원리
- 김영한
- transaction
- spring
- JPQL
- http
- QueryDSL
- Proxy
- 그리디
- jpa
Archives
- Today
- Total
목록IOC (1)
개발자되기 프로젝트
스프링으로 전환~~!
야아아압 1. AppConfig를 스프링 기반으로 전환! @Configutarion : 설정 정보에 적용 @Bean : 스프링 컨테이너에 bean으로 등록됨. 스프링 컨테이너에 등록 될 때 각 메서드의 이름으로 등록된다. @Configuration public class AppConfig { @Bean public MemberService memberService(){ return new MemberServiceImpl(memberRepository()); } @Bean public OrderService orderService(){ return new OrderServiceImpl(memberRepository(), discountPolicy()); } @Bean public MemoryMemberRe..
인프런/[인프런] Spring 핵심원리 이해
2021. 7. 25. 22:51