其他分享
首页 > 其他分享> > Spring框架-day04之Spring中的常用注解

Spring框架-day04之Spring中的常用注解

作者:互联网

内容体系安排:
	1.spring中IOC的常用注解
	2.案例使用xml方式和注解方式实现单表的CRUD操作
		持久层技术选型:DBUtils
	3.改造基于注解的IOC案例,使用纯注解的方式实现
		spring的一些新注解使用
	4.spring和JUnit的整合

注解方式IOC代码如下:

配置文件:

<?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.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd">

    <!--<context:annotation-config/>-->

    <!-- 告知spring在创建容器时要扫描的包,配置所需要的
        标签不是在beans的约束中,而是一个名为context名称空间和约束中
     -->
    <context:component-scan base-package="itcast"></context:component-scan>
</beans>

Service层代码:

/**
 * 账户的业务层实现类
 *
 * 曾经xml的配置:
 *  <bean id="accountService" class="itcast.service.impl.AccountServiceImpl"
 *      scope="" init-method="" destroy-method="">
 *      <property name="" value="" ref=""></property>
 *      </bean>
 *
 * 用于创建对象的注解
 *      作用就和在XML配置文件中编写一个<bean>标签实现的功能是一样的
 *      @Component:
 *          作用:用于把当前类对象存入Spring容器中
 *          属性:value用于指定bean的id。
 *              当不写时,默认值是当前类名首字母小写
 *
 *      @Controller:一般用在表现层
 *      @Service:一般用在业务层
 *      @Repository:一般用在持久层
 *      以上三个注解他们的作用和属性与Component是一模一样的,
 *      他们3个是Spring框架为我们明确提供的三层使用的注解,使
 *      3层对象语义更加清晰
 * 用于注入数据的注解
 *      作用和XML配置文件中<bean>标签中写一个property标签作用一样的
 *      Autowired:
 *          作用:自动按照类型注入。只要容器中有唯一bean对象类型和要注入的变量类型匹配,就可以注入成功
 *              如果ioc容器中没有任何bean的类型和要注入的类型匹配,则报错。
 *              如果ioc容器中有多个类型匹配时,
 *          常用注解位置:
 *              成员变量,方法上
 *          细节:在使用注解注入时,set方法就不是必须的
 * 用于改变作用范围的注解
 *      作用和bean标签中使用scope属性实现的功能是一样的
 * 生命周期相关注解
 *      作用和在bean标签中使用Init-method和destroy-method作用是一样的
 */
@Component
public class AccountServiceImpl implements IAccountService {


//    private IAccountDao accountDao = new AccountDaoImpl();
    private IAccountDao accountDao;

    public AccountServiceImpl() {
        System.out.println("对象创建了~");
    }

    public void saveAccount() {
        accountDao.saveAccount();
    }

}

持久层代码

/**
 * 账户的持久层实现类
 */
@Repository("accountDao")
public class AccountDaoImpl implements IAccountDao {

    public void saveAccount() {
        System.out.println("保存了账户!");
    }
}

表现层代码:

/**
 * 模拟表现层,调用业务层
 */
public class Client {


    public static void main(String[] args) {
        // 1.获取核心容器对象
        ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");
        // 2.根据id获取Bean对象
        IAccountService as = (IAccountService) ac.getBean("accountServiceImpl");
        System.out.println(as);

        IAccountDao dao = ac.getBean("accountDao", IAccountDao.class);
        System.out.println(dao);
    }
}

自动类型注入图解:

先匹配数据类型,再匹配要注入的变量名称与Map容器内
key进行比较(即注解上的value),来匹配Bean对象

在这里插入图片描述
代码实现如下:

/**
 * 模拟表现层,调用业务层
 */
public class Client {


    public static void main(String[] args) {
        // 1.获取核心容器对象
        ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");
        // 2.根据id获取Bean对象
        IAccountService as = (IAccountService) ac.getBean("accountServiceImpl");
        System.out.println(as);
        as.saveAccount();

        IAccountDao dao = ac.getBean("accountDao", IAccountDao.class);
        System.out.println(dao);
    }
}


@Component   // 利用注解扫描创建对象进容器来实现IOC
public class AccountServiceImpl implements IAccountService {

	// 现在map容器中寻找匹配的数据类型
	// 如果有多个相同的数据类型,则
	// 根据map容器内的键来再次匹配此处的变量名
    @Autowired
    private IAccountDao accountDao2;

    public AccountServiceImpl() {
        System.out.println("对象创建了~");
    }

    public void saveAccount() {
        accountDao2.saveAccount();
    }

}

要注入AccountService的Bean1:

/**
 * 账户的持久层实现类
 */
@Repository("accountDao")    // 利用注解扫描创建对象进容器来实现IOC
public class AccountDaoImpl implements IAccountDao {

    public void saveAccount() {
        System.out.println("保存了1111账户!");
    }
}

要注入AccountService的Bean2:

/**
 * 账户的持久层实现类
 */
@Repository("accountDao2")
public class AccountDaoImpl2 implements IAccountDao {

    public void saveAccount() {
        System.out.println("保存了2222账户!");
    }
}

Qualifier的使用:必须和AutoWiried配合使用

*       Qualifier:
 *          作用:在按照类中注入的基础上再按照名称注入,
 *              他在给类成员注入时,不能单独使用,
 *              在给方法注入时,可以单独使用
*           属性:
 *             value:用于指定注入bean的id

在这里插入图片描述

Resource的使用:比起Qualifier更加方便

	*       Resource
 *          作用:直接按照bean的id注入。他可以独立使用
 *          属性:name:用于指定bean的id

在这里插入图片描述

注意:Autowired,Qualifier,Resource只能注入其他bean类型,但是基本类型和String类型无法注入,另外集合类型的注入只能通过xml配置来实现

@Value的作用:用于注入基本类型和String类型数据
属性:value:用于指定数据的值,
	可以使用spring中的Spel(spring表达式)
	Spel的写法:${表达式}

Scope:和bean标签中使用socpe属性实现的功能是一样的
作用:用于指定bean的作用范围
属性:value,指定范围的取值。常用取值:singleton prototype
如果不写默认是单列模式的bean创建方式

生命周期相关:
PreDestory:用于指定销毁方法
PostConstruct:用于初始化方法

标签:Spring,day04,bean,IAccountDao,println,注解,public,注入
来源: https://blog.csdn.net/qq_44905731/article/details/121874066