Spring或者SpringBoot中JavaConfig与@Configuration的对比

该文章主要讲解了Spring或者SpringBoot中JavaConfig与@Configuration的的区别,在下一篇里会着重介绍@Configuration和@Bean的应用-点我跳转

@Configuration对我们来说其实并不陌生,它就是JavaConfig形式的Spring IoC容器配置的那个@Configuration,既然SpringBoot应用骨子里是一个Sping应用,那么自然也需要加载某个IoC容器的配置。而SrpingBoot社区推荐使用基于JavaConfig的配置形式,所以很明显,对于类标注了@Configuration之后,本身其实也是一个IoC容器的配置类。

Spring3.0之前要使用Spring必须要有一个xml配置文件,而Spring3.0之后注解慢慢登上舞台,通过注解@Configuration和@Bean可以完全搞定。此时,注解和xml配置形成了相互协作与竞争的关系。随着Springboot的推广,注解的使用在Spring中大放光彩,xml的辉煌一去不返。通过注解,简化了配置,提升了编码效率。

Spring 3.0新增了另外两个实现类:AnnotationConfigApplicationContext 和 AnnotationConfigWebApplicationContext。它们是为注解而生,直接依赖于注解作为容器配置信息来源的IoC容器初始化类。AnnotationConfigWebApplicationContext是AnnotationConfigApplicationContext的web版本,其用法与后者相比几乎没有什么差别。从Spring3.0,@Configuration用于定义配置类,可替换xml配置文件,被注解的类内部包含有一个或多个被@Bean注解的方法,这些方法将会被AnnotationConfigApplicationContext或AnnotationConfigWebApplicationContext类进行扫描,并用于构建bean定义,初始化Spring容器。

基于JavaConfig方式的依赖关系绑定描述,基本上映射了最早的基于XML的配置方式。这里举几个简单例子描述下XML跟config配置方式的区别。

(1)表达形式层面

基于XML的配置方式时这样的:

<?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-3.0.xsd"
      default-lazy-init="true">
   <!--bean定义-->
</beans>

而基于JavaConfig的的配置方式是这样的:

@Configuration
public class MockConfiguration{
     //bean定义
    @Bean
}

任何一个标注了@Configuration的Java类都是一个JavaConfig配置类。

(2)注册bean定义层面

<bean id="mockService" class="..MockServiceImpl">
     ...
</bean>

而基于JavaConfig的配置形式是这样的:

@Configuration
public class MockConfiguration{
   @Bean
   public MockService mockService(){
       return new MockServiceImpl();
   }
}

任何一个标注了@Bean的方法,其返回值将作为一个bean定义注册到Spring的IoC容器,方法名将默认成该bean定义的id。

3)表达依赖注入关系层面
为了表达bean与bean之间的依赖关系,在XML形式中一般是这样:

<bean id="mockService" class="..MockServiceImpl">
     <propery name ="dependencyService" ref="dependencyService" />
</bean>
 
<bean id="dependencyService" class="DependencyServiceImpl"></bean>

而基于JavaConfig的配置形式是这样的:

@Configuration
public class MockConfiguration{
   @Bean
   public MockService mockService(){
       return new MockServiceImpl(dependencyService());
   }
   
   @Bean
   public DependencyService dependencyService(){
       return new DependencyServiceImpl();
   }
}

如果一个bean的定义依赖其他bean,则直接调用对应的JavaConfig类中依赖bean的创建方法就可以了。

@Configuration:提到@Configuration就要提到他的搭档@Bean。使用这两个注解就可以创建一个简单的spring配置类,可以用来替代相应的xml配置文件。

@Configuration
public class MockConfiguration{
   @Bean
   public MockService mockService(){
       return new MockServiceImpl(dependencyService());
   }
   
   @Bean
   public DependencyService dependencyService(){
       return new DependencyServiceImpl();
   }
}

相当于:

@Configuration 
public class Conf { 
   @Bean 
   public Car car() { 
       Car car = new Car(); 
       car.setWheel(wheel()); 
       return car; 
   }
   
   @Bean 
   public Wheel wheel() { 
       return new Wheel(); 
   } 
}

@Configuration的注解类标识这个类可以使用Spring IoC容器作为bean定义的来源。
@Bean注解告诉Spring,一个带有@Bean的注解方法将返回一个对象,该对象应该被注册为在Spring应用程序上下文中的bean。

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值