Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions keyword/chapter03/appendix/bean.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
## AbstractAutowireCapableBeanFactory
<aside>

Spring 컨테이너 안에서 Bean을 생성 및 설정, 초기화를 책임지는 추상 클래스이다.

</aside>

- 빈과 빈 사이의 의존성을 연결해준다.
- `createBean()`의 `doCreateBean()`함수가 실행되면서 객체가 생성되고 메모리에 올라간다.

![alt text](../assets/bean1.png)

## BeanPostProcessor

<aside>

Bean이 생성된 직후, 사용되기 전에 끼어들어서 가공할 수 있는 인터페이스이다.

</aside>

- AOP 프록시 생성, 로깅 추가 등이 이 인터페이스에서 일어난다.

## AutowiredAnnotationBeanPostProcessor

BeanPostProcessor의 구현체로, @Autowired 어노테이션이 존재하는 필드/생성자를 자동으로 찾아서 주입해주는 역할을 한다.
24 changes: 24 additions & 0 deletions keyword/chapter03/appendix/filter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
## DelegatingFilterProxyRegistrationBean
DelegatingFilterProxy를 생성해 서블릿 컨테이너에 등록해주는 클래스
Spring Boot환경에서 작동하는 방식이다.

![alt text](../assets/filter1.png)
## SecurityFilterAutoConfiguration
DelegatingFilterProxyRegistrationBean객체를 생성하고 빈으로 등록하면서 DelegatingFilterProxy가 등록되도록 만드는 설정 클래스
![alt text](../assets/filter2.png)
## AbstractSecurityWebApplicationInitializer
`DelegatingFilterProxy`를 생성하고 서블릿 컨텍스트의 Filter Chain에 등록한다.
![alt text](../assets/filter3.png)
- 전통적인 Spring MVC 환경에서 작동하는 방식이다.
- Spring Boot 환경에서 실행하면 실행되지 않는 코드이다.
![alt text](../assets/filter4.png)
→ 실제로 DelegatingFilterProxyRegistrationBean만 실행된다.
## FilterChainProxy의 VirtualFilterChain
<aside>

Security 필터들을 순서대로 실행하기 위한 내부 전용 가상 체인

</aside>

- Security Filter들을 실행하기 위해서는 Spring Context에 위임해야한다.
- Spring Context가 `DelegatingFilterProxy`에 의해 위임받으면, 실제로 톰캣의 필터체인인 `ApplicationFilterChain`이 아닌 `VirtualFilterChain`을 기반으로 Security필터들이 실행된다.
Binary file added keyword/chapter03/assets/bean1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added keyword/chapter03/assets/filter1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added keyword/chapter03/assets/filter2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added keyword/chapter03/assets/filter3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added keyword/chapter03/assets/filter4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added keyword/chapter03/assets/ioc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added keyword/chapter03/assets/servlet1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added keyword/chapter03/assets/servlet2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added keyword/chapter03/assets/servlet3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added keyword/chapter03/assets/servlet4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added keyword/chapter03/assets/servlet5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added keyword/chapter03/assets/servlet6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added keyword/chapter03/assets/servlet7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading