1 基于注解的 IoC 配置
1.1 配置文件
<?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.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<!-- 告知 spring 创建容器时要扫描的包 -->
<context:component-scan base-package="cn.pine"></context:component-scan>
</beans>
1.2 常用注解
1.2.1 用于创建对象
相当于:<bean id="" class="">
1.2.1.1 @Component
相当于在xml中配置bean
value属性:指定bean的id。
1.2.1.2 @Controller @Service @Repository
针对@Component的衍生注解,他们的作用及属性都是一模一样的,但提供了更加明确的语义化。
@Controller:一般用于表现层的注解。
@Service:一般用于业务层的注解。
@Repository:一般用于持久层的注解。
细节:如果注解中有且只有一个属性要赋值时,且名称是 value,value 在赋值是可以不写。
1.2.2 用于输入数据
相当于:<property name="" ref="">
<property name="" value="">
1.2.2.1 @Autowired
作用:
自动按照类型注入。当使用注解注入属性时,set
方法可以省略。它只能注入其他 bean 类型。当有多个类型匹配时,使用要注入的对象变量名称作为 bean 的 id,在 Spring 容器查找,找到了也可以注入成功。找不到就报错。
1.2.2.2 @Qualifier
作用:
在自动按照类型注入的基础之上,再按照 Bean 的 id 注入。它在给字段注入时不能独立使用,必须和@Autowire
一起使用;但是给方法参数注入时,可以独立使用。
**属性:**value:指定 bean 的 id。
1.2.2.3 @Resource
**作用:**直接按照 Bean 的 id 注入。它也只能注入其他 bean 类型。
**属性:**name:指定 bean 的 id。
1.2.2.4 @Value
**作用:**注入基本数据类型和 String 类型数据的
**属性:**value:用于指定值
1.2.3 改变作用范围
相当于:<bean id="" class="" scope="">
1.2.3.1 @Scope
**作用:**指定 bean 的作用范围。
**属性:**value:指定范围的值 取值:singleton prototype request session globalsession
1.2.4 生命周期相关
相当于:<bean id="" init-method="" destroy-method/>
@PostConstruct:指定初始化的方法
@PreDestroy:指定销毁方法
1.3 纯注解配置
1.3.1 @Configuration
**作用:**用于指定当前类是一个 spring 配置类,当创建容器时会从该类上加载注解。获取容器时需要使用AnnotationApplicationContext
(有@Configuration 注解的类.class)。
**属性:**value:用于指定配置类的字节码
1.3.2 @ComponetScan
**作用:**用于指定 spring 在初始化容器时要扫描的包。作用和在配置文件中的:<context:component-scan base-package=""/>
是一样的。
**属性:**basePackages:用于指定要扫描的包。和该注解中的 value 属性作用一样。
1.3.3 @Bean
**作用:**该注解只能写在方法上,表明使用此方法创建一个对象,并且放入 Spring 容器。
**属性:**name:给当前@Bean 注解方法创建的对象指定一个名称(即 bean 的 id)。
1.3.4 @PropertySource
作用:
用于加载.properties 文件中的配置。例如我们配置数据源时,可以把连接数据库的信息写到 properties 配置文件中,就可以使用此注解指定 properties 配置文件的位置。
属性:
value[]:用于指定 properties 文件位置。如果是在类路径下,需要写上 classpath:
1.3.5 @Import
**作用:**用于导入其他配置类,在引入其他配置类时,可以不用再写@Configuration 注解。
**属性:**value[]:用于指定其他配置类的字节码。
1.3.6 通过注解获取容器
ApplicationContext ac = new AnnotationConfigApplicationContext(SpringConfiguration.class);
2 Spring 整合Junit
使用Junit单元测试:测试我们的配置
Spring整合junit的配置
1、导入spring整合junit的jar(坐标)
2、使用Junit提供的一个注解把原有的main方法替换了,替换成spring提供的
3、(在测试类上)
@Runwith(SpringJUnit4ClassRunner.class)告知spring的运行器,spring和ioc创建是基于xml还是注解的,并且说明位置
@ContextConfiguration(classes = SpringConfiguration.class)
locations:指定xml文件的位置,加上classpath关键字,示在类路径下
classes:指定注解类所在位置
当我们使用spring 5.x版本的时候,要求junit的jar必须是4.12及以上