Spring 학습 노트 의존 주석 (2)
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" 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-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">
<bean id="person" class="come.demo.spring.di.annotation.Person">
</bean>
<bean id="student" class="come.demo.spring.di.annotation.Student"></bean>
<context:annotation-config></context:annotation-config>
</beans>
Person.java
public class Person {
/** * @Autowired @Qualifier("student") == @Resource(name="student") */
@Resource(name="student")
private Student student;
@PostConstruct //
public void init(){
System.out.println("init");
}
@PreDestroy // spring
public void destroy(){
}
public void say(){
this.student.say();
}
}
Student.java public class Student { public void say(){ System.out.println(“student”); } }
PersonTest.java
public class PersonTest {
/** * 1、 spring * 2、 spring bean (person,student) * 3、 spring * <context:annotation-config></context:annotation-config> * spring spring bean @Resource * 4、 @Resource * @Resource name "" * @Resource spring id * , * , * , , , * @Resource name "" * @Resource name , spring ID * , * , * * : * , * */
@Test
public void testDIAnnotation(){
ApplicationContext context =
new ClassPathXmlApplicationContext("applicationContext.xml");
Person person = (Person)context.getBean("person");
person.say();
}
}
4.0 scan- ( , )
4.1
<context:component-scan
base-package="com.demo.spring.scan.annotation"></context:component-scan
4.2 :
0.0 spring , component
1.0 spring
2.0 spring , base-package 。
3.0 spring
@Component
@Component
value ““
”“,
@Component
public class Person{
}
==
<bean id = "person" class="..person"
value , :
@Component("aa")
public class Person{}
==
<bean id="aa" class="..Person"
4.0 spring bean, @Resource
5.0 소결
1、IOC ,spring
1.1 spring
1 2. 3.
spring , 。
?
spring 。
lazy-init="true" , contextgetbean 。
scope="property" , contextgetbean 。
(init, init-method,spring )
(destroy, spring )
2、DI
2.1
set , 。 。
、 、 。
@Resource 。
<context:component-scan 。
6.0 spring 주해 의 계승 xml 의 계승 이 필요 합 니 다. parent: spring 용기 의 계승 으로 주 해 된 계승 프로필 은 parent 가 필요 없습니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.