강의

멘토링

커뮤니티

Inflearn Community Q&A

fwg80661060's profile image
fwg80661060

asked

Spring Core Principles - Basic Edition

Getting Started with Component Scan and Automatic Dependency Injection

excludeFilters Configuration.class 질문이요

Written on

·

469

1

 

@Configuration
@ComponentScan(
        basePackages = "hello.core",
        excludeFilters = @Filter(type = FilterType.ANNOTATION, classes = Configuration.class))
public class AutoAppConfig {

}

excludeFilters Configuration.class 기능이 @Configuration 어노테이션 붙은 클래스를 제외하는건데 자기 자신도 @Configuration이 붙어 있는데 자신은 빼고 제외하는 걸 의미하는 건가용?

 

oopspring

Answer 1

2

안녕하세요. g g님, 공식 서포터즈 OMG입니다.
.

아래 링크를 참고해주세요 :)

https://www.inflearn.com/questions/323342
.
감사합니다.

g g님의 프로필 이미지
g g
Questioner

감사합니다 굿굿!

fwg80661060's profile image
fwg80661060

asked

Ask a question