Spring@Autowired 설정
2529 단어 @Autowired
Spring 은 BeanPostProcessor 를 통 해@Autowired 를 분석 하기 때문에@Autowired 가 역할 을 하려 면 스프링 용기 에 미리 설명 해 야 합 니 다.
AutowiredAnnotationBeanPostProcessor Bean。
또는 암시 적 등록 사용(
암시 적 등록 post-processors 포함
AutowiredAnnotationBeanPostProcessor,CommonAnnotationBeanPostProcessor,PersistenceAnnotationBeanPostProcessor,RequiredAnnotationBeanPostProcessor。)
<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"
default-lazy-init="true">
<!-- BeanPostProcessor @Autowired Bean -->
<!-- <bean class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor" /> -->
<!-- -->
<context:annotation-config/>
</beans>
@Autowired
private Scheduler scheduler;
<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"
default-lazy-init="false">
<!-- -->
<bean
name="scheduler"
class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
<!-- applicationContextSchedulerContextKey spring -->
<property name="applicationContextSchedulerContextKey">
<value>applicationContext</value>
</property>
</bean>
</beans>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
@Autowired 구성 방법 역할자세히 보기 클래스의 구조 방법에서 주입할 대상을 얻어야 할 때: 구성 방법에서 @Autowire 사용 가능 추가하지 않으면 오류가 발생합니다. 자바 클래스는 구조 방법을 먼저 실행한 다음에 주석@Autowired의...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.