private Object resolveInstance(Object candidate, DependencyDescriptor descriptor, Class<?> type, String name) {
Object result = candidate;
if (result instanceof NullBean) {
// Raise exception if null encountered for required injection point
if (isRequired(descriptor)) {
raiseNoMatchingBeanFound(type, descriptor.getResolvableType(), descriptor);
}
result = null;
}
if (!ClassUtils.isAssignableValue(type, result)) {
throw new BeanNotOfRequiredTypeException(name, type, candidate.getClass());
}
return result;
}
DefaultListableBeanFactory
에서 resolveInstance
메서드를 통해 주입받을 빈에 대한 검증을 진행합니다.
public static boolean isAssignableValue(Class<?> type, @Nullable Object value) {
Assert.notNull(type, "Type must not be null");
return (value != null ? isAssignable(type, value.getClass()) : !type.isPrimitive());
}
ClassUtils.isAssignableValue
를 통해 주입 될 후보 객체(result
)와 주입 받을 객체가 선언한 타입(type
)에 대한 검사를 진행합니다.
해당 검사를 진행할 때 isAssignable
메서드는 value
가 type
에 할당 가능한지 확인합니다.
The bean 'XXXImpl' could not be injected because it is a JDK dynamic proxy
The bean is of type 'jdk.proxy2.$Proxy141' and implements:
com.XXX
org.springframework.aop.SpringProxy
org.springframework.aop.framework.Advised
org.springframework.core.DecoratingProxy
이때 value
가 빈으로 등록될 때 인터페이스 타입으로 등록된 상태로 프록시 객체가 되었다면 target
에 할당할 수 없습니다.
로그에서도 확인할 수 있듯 프록시 객체는 인터페이스 타입으로 생성된 것이기 때문입니다.
'스프링' 카테고리의 다른 글
MVC의 요청 처리 과정 (0) | 2025.03.31 |
---|---|
Webflux, ReactiveTransactionManager 환경에서의 이벤트 발행 (0) | 2025.03.24 |
트랜잭션을 위한 프록시 객체와 AspectJ의 프록시 객체는 어떤 순서로 실행될까? (0) | 2025.03.18 |
내가 이해한 스프링의 빈 생명 주기 (0) | 2025.03.17 |
트랜잭션 커밋과 AOP 중 어떤 것이 먼저 실행 될까? (0) | 2025.03.15 |