Spring除了xml配置文件进行配置之外,还可以使用注解方式进行配置,注解方式慢慢成为xml配置的替代方案。我们有了xml开发的经验,学习注解开发就方便了许多,注解开发更加快捷方便。
Spring提供的注解有三个版本:
基本Bean注解,主要是使用注解的方式替代原有xml的
标签及其标签属性的配置
<bean id="" name="" class="" scope="" lazy-init="" init-method="" destroy-method=""abstract="" autowire="" factory-bean="" factory-method="">bean>
使用@Component注解替代
标签
xml配置 | 注解 | 描述 |
---|---|---|
|
@Component | 被该注解表示的类,会在指定扫描范围内被Spring加载并实例化 |
例:
@Component("userDao")
public class UserDaoImpl implements UserDao {
}
@Component("userService")
public class UserServiceImpl implements UserService {
}
<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 https://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package="com.itheima">context:component-scan>
beans>
public class SpringTest {
@Test
public void springTest1(){
ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
Object userDao = applicationContext.getBean("userDao");
Object userService = applicationContext.getBean("userService");
System.out.println(userService);
System.out.println(userDao);
}
}
使用@Component
注解替代
标签
xml配置 | 注解 | 描述 |
---|---|---|
|
@Scope | 在类上或使用了@Bean标注的方法上,标注Bean的作用范围,取值为singleton或prototype |
|
@Lazy | 在类上或使用了@Bean标注的方法上,标注Bean是否延迟加载,取值为true和false |
|
@PostConstruct | 在方法上使用,标注Bean的实例化后执行的方法 |
|
@PreDestroy | 在方法上使用,标注Bean的销毁前执行方法 |
package com.itheima.dao.impl;
import com.itheima.dao.UserDao;
import org.springframework.context.annotation.Lazy;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
@Component("userDao")
@Scope("singleton")
@Lazy(false)
public class UserDaoImpl implements UserDao {
public UserDaoImpl(){
System.out.println("userDao创建。。。。");
}
@PostConstruct
public void init(){
System.out.println("userDao的初始话方法。。。");
}
@PreDestroy
public void destory(){
System.out.println("userDao的销毁方法。。。");
}
}
@PostConstruct和 @PreDestroy注解报错的话,应该是缺少下面的依赖包:
<dependency>
<groupId>javax.annotationgroupId>
<artifactId>jsr250-apiartifactId>
<version>1.0version>
dependency>
@Test
public void springTest1(){
ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
Object userDao = applicationContext.getBean("userDao");
Object userService = applicationContext.getBean("userService");
System.out.println(userService);
System.out.println(userDao);
applicationContext.close();
}
由于JavaEE开发是分层的,为了每层Bean标识的注解语义化更加明确
@Component又衍生出如下三个注解:
@Component衍生注解 | 描述 |
---|---|
@Repository | 在Dao层类上使用 |
@Service | 在Service层类上使用 |
@Controller | 在Web层类上使用 |
@Service("userService")
public class UserServiceImpl implements UserService{}
@Repository("userDao")
public class UserDaoImpl implements UserDao{}
@Controller("userService")
public class UserController{}
Bean依赖注入的注解,主要是使用注解的方式替代xml的
标签完成属性的注入操作
<bean id=" "class="">
<property name="" value=""/>
<property name="" ref=""/>
bean>
Spring主要提供如下注解,用于在Bean内部进行属性注入的:
属性注入注解 | 描述 |
---|---|
@Value | 使用在字段或方法上,用于注入普通数据 |
@Autowired | 使用在字段或方法上,用于根据类型(byType)注入引用数据 |
@Qualifier | 使用在字段或方法上,结合@Autowired,根据名称注入 |
@Resource | 使用在字段或方法上,根据类型或名称进行注入 |
@Service("userService")
public class UserServiceImpl implements UserService{
@Value("zhangsan")
private String username;
//@Autowired //如果同一类型的Bean有多个,尝试根据名字进行二次匹配,如果匹配不成功则会报错
//@Qualifier("userDao2") //配合使用@Autowired注解,可以在同一类型的多个Bean中根据名称注入相应的Bean
@Resource //不指定名称参数时,根据类型注入,指定名称则根据名称注入
private UserDao userDao;
@Override
public void show() {
System.out.println(username);
System.out.println(userDao);
}
}
@Service("userService")
public class UserServiceImpl implements UserService{
@Autowired
public void xxx(UserDao userDao) {
System.out.println("xxx:"+userDao);
}
}
@Service("userService")
public class UserServiceImpl implements UserService{
@Autowired
public void yyy(List<UserDao> userDaoList) {
System.out.println("yyy:"+userDaoList);
}
}
非自定义Bean不能像自定义Bean一样使用@Component进行管理,非自定义Bean要通过工厂的方式进行实例化,使用@Bean标注方法即可,@Bean的属性为beanName,如不指定为当前工厂方法名称
//将方法返回值Bean实例以@Bean注解指定的名称存储到spring容器中
@Bean ("datasource")
public DataSource dataSource (){
DruidDataSource dataSource = new DruidDataSource();
dataSource.setDriverClassName("com.mysql.jdbc.Driver");
dataSource.setUrl("jdbc:mysql://localhost:3306/mybatis");
dataSource.setUsername("root");
dataSource.setPassword("123456");
return dataSource;
}
在参数中注入
@Component
public class otherBean {
@Bean("dataSource")
public DataSource dataSource(
@Value("${jdbc.driver}") String driver
@Qualifier("userDao") UserDao UserDao//不需要写@Autowired
){
DruidDataSource dataSource = new DruidDataSource();
dataSource.setDriverClassName("com.mysql.jdbc.Driver");
dataSource.setUrl("jdbc:mysql://localhost:3306/mybatis");
dataSource.setUsername("root");
dataSource.setPassword("123456");
return dataSource;
}
}
如果@Bean工厂方法需要参数的话,则有如下几种注入方式:
@Component等注解替代了
标签,但是像
、
等非
标签怎样去使用注解替代呢?
<context:property-placeholder location="classpath:jdbc.properties">context:property-placeholder>
<context:component-scan base-package="com.itheima">context:component-scan>
定义一个配置类替代原有的xml配置文件,
标签以外的标签,一般都是在配置类上使用注解完成的
需要在配置类上加 @Configuration
作用:
xml配置 | 注解 | 描述 |
---|---|---|
|
@ComponentScan | 组件扫描配置 |
|
@PropertySource | 获取到properties文件里的信息 |
|
@Import | 导入其他的xml配置文件 |
base-package的配置方式:
@Configuration //注解当前类是一个配置类(替代配置文件)+ @Component
//
@ComponentScan("com.itheima")
//
@PropertySource("classpath:jdbc.properties")
//
@Import(OtherBean.class)
public class SpringConfig {
}
例:
/@Component
public class OtherBean {
@Bean("dataSource")
public DataSource dataSource(
@Value("${jdbc.driver}") String driverClassName,
@Qualifier("userDao2")UserDao userDao,
UserService userService
){
DruidDataSource dataSource = new DruidDataSource();
//设置4个参数
// System.out.println(driverClassName);
// System.out.println(userDao);
return dataSource;
}
}
@Test
public void springTest2(){
//xml方式的Spring容器
//ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
//注解方式去加载Spring的核心配置类
ApplicationContext applicationContext = new AnnotationConfigApplicationContext(SpringConfig.class);
Object dataSource = applicationContext.getBean("dataSource");
System.out.println(dataSource);
}
配置其他注解
扩展:@Primary注解用于标注相同类型的Bean优先被使用权,@Primary 是Spring3.0引入的,与@Component和@Bean一起使用,标注该Bean的优先级更高,则在通过类型获取Bean或通过@Autowired根据类型进行注入时,会选用优先级更高的
@Repository("userDao")
public class UserDaoImpl implements UserDao{}
@Repository("userDao2")
@Primary
public class UserDaoImpl2 implements UserDao{}
@Bean("dataSource")
public DataSource dataSource(){}
@Bean("dataSource2")
@Primary
public DataSource dataSource2(){}
<beans profile="test">
注解@Profile标注在类或方法上,标注当前产生的Bean从属于哪个环境,只有激活了当前环境,被标注的Bean才能被注册到Spring容器里,不指定环境的Bean,任何环境下都能注册到Spring容器里
@Repository("userDao")
@Profile("test")
public class UserDaoImpl implements UserDao{}
@Repository("userDao2")
public class UserDaoImpl2 implements UserDao{}
测试
1.
@Test
public void springTest2(){
//xml方式的Spring容器
//ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
//注解方式去加载Spring的核心配置类
ApplicationContext applicationContext = new AnnotationConfigApplicationContext(SpringConfig.class);
Object userDao = applicationContext.getBean("userDao");
System.out.println(userDao);
}
@Test
public void springTest2(){
//xml方式的Spring容器
//ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
//注解方式去加载Spring的核心配置类
ApplicationContext applicationContext = new AnnotationConfigApplicationContext(SpringConfig.class);
Object userDao2 = applicationContext.getBean("userDao2");
System.out.println(userDao2);
}
可以使用以下两种方式指定被激活的环境:
-Dspring.profiles.active=test
System.setProperty("spring.profiles.active","test");
结论:只要将Bean对应的BeanDefinition注册到beanDefinitionMap中,就可以经历整个SpringBean的生命周期,最终实例化进入单例池中
使用@Component等注解配置完毕后,要配置组件扫描才能使注解生效
<context:component-scan base-package="com.itheima"/>
@Configuration
@ComponentScan("com.itheima")
public class AppConfig {
}
注解的解析原理详解
第三方框架整合,依然使用MyBatis作为整合对象,之前我们已经使用xml方式整合了MyBatis,现在使用注解方式无非就是将xml标签替换为注解,将xml配置文件替换为配置类而已,原有xml方式整合配置如下:
使用注解方式:
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
<property name="driverClassName" value="com.mysql.cj.jdbc.Driver">property>
<property name="url" value="jdbc:mysql://localhost:3306/mybatis">property>
<property name="username" value="root">property>
<property name="password" value="root">property>
bean>
<bean class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource">property>
bean>
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="com.itheima.mapper">property>
bean>
注解方式,Spring整合MyBatis的原理,关键在于@MapperScan,@MapperScan不是Spring提供的注解,是MyBatis为了整合Spring,在整合包org.mybatis.spring.annotation中提供的注解,源码如下:
@Configuration //注解当前类是一个配置类(替代配置文件)+ @Component
//
@ComponentScan("com.itheima")
//
@PropertySource("classpath:jdbc.properties")
//
@Import(OtherBean.class)
//Mapper的接口扫描
@MapperScan("com.itheima.mapper")
public class SpringConfig {
@Bean
public DataSource dataSource(
@Value("${jdbc.driver}") String driver,
@Value("${jdbc.url}") String url,
@Value("${jdbc.username}") String username,
@Value("${jdbc.password}") String password
){
DruidDataSource dataSource = new DruidDataSource();
dataSource.setDriverClassName(driver);
dataSource.setUrl(url);
dataSource.setUsername(username);
dataSource.setPassword(password);
return dataSource;
}
@Bean
public SqlSessionFactoryBean sqlSessionFactoryBean(DataSource dataSource){
SqlSessionFactoryBean sqlSessionFactoryBean = new SqlSessionFactoryBean();
sqlSessionFactoryBean.setDataSource(dataSource);
return sqlSessionFactoryBean;
}
}
重点关注一下
@lmport({MapperScannerRegistrar.class)
,当@MapperScan被扫描加载时,会解析@Import注解,从而加载指定的类,此处就是加载了MapperScannerRegistrar
实现:
@Service("userService")
public class UserServiceImpl implements UserService {
@Autowired //根据类型进行注入,如果同一类型的Bean有多给,会再尝试根据名字进行二次匹配,匹配不成功的会报错
// @Qualifier("userDao2") //在此,结合@Autowired一起使用,作用是根据名称注入相应的Bean
// @Resource(name="userDao2") //不指定名称参数时,根据类型注入,指定名称就根据名称注入
// private UserDao userDao;
private UserMapper userMapper;
@Override
public void show() {
// System.out.println(userDao);
List<User> all = userMapper.findAll();
for (User user : all) {
System.out.println(user);
}
}
}
@Test
public void springTest2(){
// System.setProperty("spring.profiles.active","test");
//xml方式的Spring容器
//ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
//注解方式去加载Spring的核心配置类
ApplicationContext applicationContext = new AnnotationConfigApplicationContext(SpringConfig.class);
// Object userDao = applicationContext.getBean("userDao");
UserService userService = applicationContext.getBean(UserService.class);
userService.show();
}
Spring与MyBatis注解方式整合有个重要的技术点就是@Import,第三方框架与Spring整合xml方式很多是凭借自定义标签完成的,而第三方框架与Spring整合注解方式很多是靠@Import注解完成的。
@lmport可以导入如下三种类:
lmportSelector
接口的类public class MyImportSelector implements ImportSelector { @Override
public String[] selectImports(AnnotationMetadata annotationMetadata) {
//参数annotationMetadata叫做注解媒体数组,该对象内部封装是当前使用了@Import注解上的类上的其他注解
Map<String, Object> annotationAttributes = annotationMetadata.getAnnotationAttributes(ComponentScan.class.getName());
// annotationAttributes.forEach((attrName,attrValue)->{
// System.out.println(attrName+"=="+attrValue);
// });
String[] basePackages = (String[]) annotationAttributes.get("basePackages");
System.out.println(basePackages[0]);
// 返回的数组封装是需要被注册到Spring容器中的Bean的全限定名
return new String[]{OtherBean2.class.getName()};
}
}
@Configuration //注解当前类是一个配置类(替代配置文件)+ @Component
//
@ComponentScan("com.itheima")
//
@PropertySource("classpath:jdbc.properties")
//
//@Import(OtherBean.class)
//只能留一个@Import
@Import(MyImportSelector.class)
//Mapper的接口扫描
@MapperScan("com.itheima.mapper")
public class SpringConfig {
}
测试
@Test
public void springTest3(){
ApplicationContext applicationContext = new AnnotationConfigApplicationContext(SpringConfig.class);
OtherBean2 bean = applicationContext.getBean(OtherBean2.class);
System.out.println(bean);
}
lmportBeanDefinitionRegistrar
接口的类package com.itheima.beans;
public class OtherBean2 {
}
package com.itheima.anno;
import com.itheima.imports.MyImportBeanDefinitionRegistrar;
import org.springframework.context.annotation.Import;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Import(MyImportBeanDefinitionRegistrar.class)
public @interface MyMapperScan {
}
package com.itheima.imports;
import com.itheima.beans.OtherBean2;
import org.springframework.beans.factory.support.BeanDefinitionRegistry;
import org.springframework.beans.factory.support.BeanNameGenerator;
import org.springframework.beans.factory.support.RootBeanDefinition;
import org.springframework.context.annotation.ImportBeanDefinitionRegistrar;
import org.springframework.core.type.AnnotationMetadata;
public class MyImportBeanDefinitionRegistrar implements ImportBeanDefinitionRegistrar {
@Override
public void registerBeanDefinitions(AnnotationMetadata importingClassMetadata, BeanDefinitionRegistry registry, BeanNameGenerator importBeanNameGenerator) {
//注册BeanDefinition
RootBeanDefinition rootBeanDefinition = new RootBeanDefinition();
rootBeanDefinition.setBeanClassName(OtherBean2.class.getName());
registry.registerBeanDefinition("OtherBean2",rootBeanDefinition);
}
}