이 글은 Spring 소스 코드의 BeanDefinition 클래스에 대해 자세히 소개합니다. 필요한 친구들이 참고할 수 있기를 바랍니다.
Spring 버전은 5.1.5입니다
Spring을 사용해 본 사람이라면 누구나 Spring 컨테이너에 개체를 주입하고 Spring이 이를 관리하도록 한다는 것을 알고 있습니다. 이런 종류의 객체를 빈(Bean) 객체라고 합니다. 그러나 이러한 Bean 객체는 스프링 컨테이너에 어떤 형태로 존재하며 어떤 속성과 동작을 가지고 있습니까? 오늘 우리는 알아보기 위해 스프링 소스 코드를 입력합니다.
Bean 생성 팩토리 BeanFactory에는 주입된 모든 Bean 객체 정보를 저장하는 Map이 포함된 기본 구현 클래스 DefaultListableBeanFactory가 있습니다.
/** Map of bean definition objects, keyed by bean name. */ private final Map<String, BeanDefinition> beanDefinitionMap = new ConcurrentHashMap<>(256);
Map의 값 객체 BeanDefinition은 Spring의 Bean에 대한 정의 및 설명입니다. ’ s 부모 클래스 정의 개체 이름
String getBeanClassName(); | void setBeanClassName(@Nullable String beanClassName); | 빈 객체의 실제 클래스 클래스 |
---|---|---|
String getScope(); | void setScope(@Nullable Stringscope);
bean 객체 싱글톤인지 |
|
boolean isLazyInit(); | void setLazyInit(booleanlazyInit);
게으른 로딩인지 여부 |
|
문자열[ ] On(); | void setDependsOn(@Nullable String... presentsOn);
종속 Bean 객체를 설정합니다. 종속 Bean 객체는 항상 현재 Bean 객체보다 먼저 생성됩니다 |
|
boolean isAutowireCandidate() ; | void setAutowireCandidate( boolean autowireCandidate);
자동 주입을 수행할 수 있는지 여부를 설정합니다. @Autowired 주석에만 유효하며 구성 파일은 속성 표시 |
|
boolean isPrimary(); | void setPrimary(boolean Primary);
빈을 기본 후보 빈으로 구성하여 주입할 수 있습니다. 동일한 인터페이스의 여러 구현 클래스 또는 클래스가 스프링 컨테이너에 여러 번 주입되는 경우 이 속성을 사용하여 해당 Bean을 주요 후보 Bean으로 구성합니다. 유형별 주입 시 기본적으로 주요 후보 Bean을 주입용으로 사용합니다 | |
String getFactoryBeanName(); | void setFactoryBeanName(@Nullable String FactoryBeanName);
생성된 Bean의 팩토리 이름을 설정합니다. |
|
String getFactoryMethodName(); | void setFactoryMethodName( @Nullable String FactoryMethodName);
팩토리에서 Bean을 생성하는 특정 방법을 설정합니다. |
|
String getInitMethodName(); | void setInitMethodName(@Nullable String initMethodName);
Bean 생성 시 기본 초기화 방법을 설정합니다 | |
String getDestroyMethodName(); | void setDestroyMethodName(@Nullable String destroyMethodName);
Bean을 삭제할 때 호출되는 메서드 이름을 설정합니다. |
|
int getRole(); | void setRole(int role);
Bean 분류 설정 |
|
String getDescription을 호출하려면 컨텍스트의 close() 메서드를 호출해야 합니다. (); | void setDescription(@Nullable String Description);
빈 객체에 대한 설명 |
|
public interface BeanDefinition extends AttributeAccessor, BeanMetadataElement { /** * Override the target scope of this bean, specifying a new scope name. * @see #SCOPE_SINGLETON * @see #SCOPE_PROTOTYPE */ void setScope(@Nullable String scope); /** * Return the name of the current target scope for this bean, * or {@code null} if not known yet. */ @Nullable String getScope(); } | 실제 사용
다음 두 개의 Bean이 있다고 가정하고 Java 코드는 다음과 같습니다 |
MyTestBean |
구성 방법을 살펴보겠습니다. 구성 파일 applicationContext.xml에서 | 다음 단계는 테스트 코드입니다FileSystemXmlApplicationContext factory = new FileSystemXmlApplicationContext("classpath:applicationContext.xml"); BeanDefinition myTestBeanDefinition = factory.getBeanFactory().getBeanDefinition("autowireCandidateBean"); //输出 System.out.println("bean description:" + myTestBeanDefinition.getDescription()); System.out.println("bean class name:" + myTestBeanDefinition.getBeanClassName()); System.out.println("parent name:" + myTestBeanDefinition.getParentName()); System.out.println("scope:" + myTestBeanDefinition.getScope()); System.out.println("is lazyinit:" + myTestBeanDefinition.isLazyInit()); System.out.println("depends On:" + myTestBeanDefinition.getDependsOn()); System.out.println("is autowireCandidate:" + myTestBeanDefinition.isAutowireCandidate()); System.out.println("is primary:" + myTestBeanDefinition.isPrimary()); System.out.println("factory bean name:"+myTestBeanDefinition.getFactoryBeanName()); System.out.println("factory bean method name:" + myTestBeanDefinition.getFactoryMethodName()); System.out.println("init method name:" + myTestBeanDefinition.getInitMethodName()); System.out.println("destory method name:" + myTestBeanDefinition.getDestroyMethodName()); System.out.println("role:" + myTestBeanDefinition.getRole()); //关闭context,否则不会调用bean的销毁方法 factory.close(); | 콘솔 출력은 다음과 같습니다init AutowireCandidateBean inti MyTestBean bean description:autowireCandidateBean description bean class name:com.yuanweiquan.learn.bean.AutowireCandidateBean parent name:myTestBean scope:singleton is lazyinit:false depends On:null is autowireCandidate:true is primary:true factory bean name:null factory bean method name:null init method name:initBean destory method name:destroyBean role:0 destroy AutowireCandidateBean | 지금까지 위의 정보를 통해 각 속성에 해당하는 값을 명확하게 확인할 수 있습니다. 위 테스트 코드의 목적은 스프링 컨테이너에 빈이 어떤 형태로 존재하는지, 어떤 특정 속성이 있는지, 속성 값과 기본값을 모두 확인할 수 있도록 하는 것입니다. 이는 봄용기 속에 담긴 콩을 미리 공개한 것이라고 볼 수 있다. 사실 우리가 상상했던 것만큼 신비롭지는 않다.
위 내용은 Spring 소스 코드의 BeanDefinition 클래스에 대한 자세한 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!