【spring】之xml和Annotation,Bean注入的方式

基于xml形式Bean注入

@Data
@AllArgsConstructor
@NoArgsConstructor
public class PersonBean {
    private Integer id;
    private String name;
    private String address;
}
<bean class="com.luna.annotation.PersonBean" id="personBean">
        <property name="name" value="张三"/>
        <property name="address" value="上海"/>
        <property name="id" value="1"/>
    </bean>
 //基于xml完成数据Bean注入
    @Test
    public void test(){
        ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
        PersonBean personBean = (PersonBean) applicationContext.getBean("personBean");
        System.out.println(personBean.getAddress());
    }

基于Annotation形式Bean注入

@Configuration
public class PersonBeanConfig {

    @Bean(value = "person")
    public PersonBean personBean(){
        return new PersonBean(1,"李四","北京");
    }


}
 //基于纯注解完成数据注入
    @Test
    public void test(){
        ApplicationContext applicationContext = new AnnotationConfigApplicationContext(PersonBeanConfig.class);
        PersonBean personBean = applicationContext.getBean(PersonBean.class);
        System.out.println(personBean.getAddress());
        PersonBean person = (PersonBean)applicationContext.getBean("person");
        System.out.println(person.getAddress());
    }

猜你喜欢

转载自www.cnblogs.com/gyjx2016/p/8903709.html