Spring配置框架之javaconfig使用方式详解编程语言

Spring配置框架之javaconfig使用方式详解编程语言

简介:基于纯java annotation的依赖注入框架Guice的出现,spring推出并持续完善了基于java代码和annotation元信息的依赖关系绑定描述方法,即javaconfig项目,基于javaconfig方式的依赖关系绑定描述基本上映射了最早的基于XML的配置方式


一、表达形式层面


1.基于xml的配置方式是这样的配置代码如下:

<?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/context  

        http://www.springframework.org/schema/context/spring-context.xsd  

        http://www.springframework.org/schema/beans  

        http://www.springframework.org/schema/beans/spring-beans.xsd  >

<!- bean定义 ->

</beans>


2.而基于javaconfig的配置方式是这样的代码如下:

@configuration

public class MockConfiguration{

  //bean定义

}

[email protected]vaconfig的配置类


二、1.注册bean定义层面基于xml的配置方式是这样的

<bean id=”mockService” class=”…MockServiceImpl”>

  …

</bean>而基于javaconfig的配置方式是这样的

@configuration

public class MockConfiguration{

[email protected]

  public MockService mockService(){

    return new MockServiceImpl():

  }

}

[email protected],其返回值将作为一个bean定义注册到Spring的IoC容器,方法 名将默认成为该bean定义的id。


2.批量定义注册bean基于xml的配置方式是这样的

<context:component-scan base-package=”…”/>

[email protected]@Repository等,将标注了这些元信息annotation的bean定义类批量采集到spring的IoC容器中而基于javaconfig的配置方式是这样的

@ComponentScan(String[] basePackages)

注:@ComponentScan是springboot框架一个关键组件


三、表达依赖注入关系层面基于xml的配置方式是这样的

<bean id=”mockService” class=”…MockServiceImpl”>

  <property name=”dependencyService” ref=”dependencyService”>

</bean>

<bean id=”dependencyService” class=”…dependencyServiceImpl”/>


1.基于javaconfig的配置方式是这样的

@configuration

public class MockConfiguration{

[email protected]

  public MockService mockService(){

    return new MockServiceImpl(dependencyService()):

  }

[email protected]

  public DependencyService dependencyService(){

    return new DependencyServiceImpl():

  }

}


四.总结:

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

Spring配置框架之javaconfig使用方式详解编程语言

转载请注明来源网站:blog.ytso.com谢谢!

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/14667.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论