ANNOTATION = 기본값 , 어노테이션을 인식해서 동작한다.
org.example.someAnnotation
특정 어노테이션의 유무에 따라 인식하여 동작한다.
ASSIGNABLE_TYPE = 지정한 타입과 자식 타입을 인식해서 동작한다.
org.example.someclass
특정 클래스 명으로 제외하거나 추가한다.
ASPECTJ = AspectJ 패턴 사용
org.example...*Service
REGEX = 정규 표현식
org.example.Defualt.*
CUSTOM = TypeFilter 라는 인터페이스를 구현해서 처리
org.example.MyTypeFilter
'SpringBoot' 카테고리의 다른 글
11월 22일 SpringBoot @AutoWired 로 의존관계 주입 (0) | 2022.11.23 |
---|---|
11월 21일 SpringBoot ComponentScan에서 같은 이름의 Bean이 등록된 경우 (0) | 2022.11.22 |
11월 14일 SpringBoot ComponentScan Filter 사용법 (0) | 2022.11.15 |
11월 13일 SpringBoot ComponentScan의 동작방법 (0) | 2022.11.14 |
11월 10일 SpringBoot Config파일 (0) | 2022.11.11 |