Spring注解驱动

本文详细介绍了Spring框架中使用注解和XML配置两种方式来管理Bean的实例化过程。通过具体的代码示例,展示了如何在实体类Person中使用属性注入,并在主测试类中通过ApplicationContext获取Bean实例进行测试。同时,比较了注解配置类和传统XML配置文件的异同。
摘要由CSDN通过智能技术生成

Spring注解

1、Spring注解如下图所示:

在这里插入图片描述

2、xml配置方式

实体类

public class Person {
    private String name;

    private String age;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getAge() {
        return age;
    }

    public void setAge(String age) {
        this.age = age;
    }

    public Person(String name, String age) {
        this.name = name;
        this.age = age;
    }

    public Person() {
    }

    @Override
    public String toString() {
        return "Person{" +
                "name='" + name + '\'' +
                ", age='" + age + '\'' +
                '}';
    }
}

配置文件

<?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.xsd">

    <bean id="person" class="com.lyc.entity.Person">
        <property name="age" value="10"/>
        <property name="name" value="111"/>
    </bean>

</beans>

测试注入

public class MainTest {

    public static void main(String[] args) {
        ApplicationContext applicationContext = new ClassPathXmlApplicationContext("bean.xml");
        Person person = (Person) applicationContext.getBean("person");
        System.out.println(person);
    }
}

结果:
在这里插入图片描述

3、注解方式

定义配置类

//配置类===配置文件
@Configuration  //声明一个配置类,并告知Spring
public class MainCofig {

    //给容器注册一个bean,类型为返回值得类型,id默认是用方法作为id
    @Bean
    public Person person(){
        return new Person("2222","10");
    }
}

测试注入:

public class MainTest {

    public static void main(String[] args) {
        ApplicationContext applicationContext =
                new AnnotationConfigApplicationContext(MainCofig.class);
        Person person = (Person) applicationContext.getBean("person");
        System.out.println(person);
    }
}

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值