반응형
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
- @Controller
- Testcode
- BindingResult
- new syntax
- optional
- 인터셉터의 정의
- MVC
- n+1
- filter vs interceptor
- 구글 보안 api 활용
- spring
- abap
- controller
- value base corresponding
- java.lang.AssertionError
- .orelseThrow
- spring MVC
- jpa
- 401오류
- abap value in field Data Class error
- SAP
- springSecurityFilterChain 오류
- SpringMVC
- 필터vs인터셉터
- application-properties
- mapping corresponding
- for all entries in
- Validation
- 신문법 abap
- 김영한
Archives
- Today
- Total
목록@Bean (1)
SAP공장
Spring의 스프링 컨테이너, @Configuration, @Bean 정리
# 인프런 김영한의 스프링 핵심 원리 - 기본편을 개인적으로 정리한 글입니다. 정리 Q. @Configuration이 뭐야? DI컨테이너 역할을 하는 AppConfig를 Spring에서 관리하겠다고 선언할때 @Configuration을 넣는다. @Configuration public class AppConfig { // public MemberService memberService(){ // return new MemberServiceImpl(new MemoryMemberRepository()); // } @Bean public MemberService memberService(){ return new MemberServiceImpl(memberRepository()); } @Bean public Mem..
카테고리 없음
2022. 1. 25. 23:23