当前位置: 首页 > 面试题库 >

了解spring @Configuration类

芮星海
2023-03-14
问题内容

在理解“ Spring @Autowired用法”这个问题之后,我想为弹簧接线的另一个选项(@Configuration类)创建一个完整的知识库。

假设我有一个看起来像这样的spring 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">

  <import resource="another-application-context.xml"/>

  <bean id="someBean" class="stack.overflow.spring.configuration.SomeClassImpl">
    <constructor-arg value="${some.interesting.property}" />
  </bean>

  <bean id="anotherBean" class="stack.overflow.spring.configuration.AnotherClassImpl">
    <constructor-arg ref="someBean"/>
    <constructor-arg ref="beanFromSomewhereElse"/>
  </bean>
</beans>

我该如何使用@Configuration呢?它对代码本身有影响吗?


问题答案:

将XML迁移到 @Configuration
@Configuration只需几个步骤即可将xml迁移到:

  1. 创建一个带@Configuration注释的类:
@Configuration
public class MyApplicationContext {

}
  1. 为每个<bean>标签创建一个方法,其注释为@Bean
@Configuration
public class MyApplicationContext {

  @Bean(name = "someBean")
  public SomeClass getSomeClass() {
    return new SomeClassImpl(someInterestingProperty); // We still need to inject someInterestingProperty
  }

  @Bean(name = "anotherBean")
  public AnotherClass getAnotherClass() {
    return new AnotherClassImpl(getSomeClass(), beanFromSomewhereElse); // We still need to inject beanFromSomewhereElse
  }
}
  1. 为了导入,beanFromSomewhereElse我们需要导入它的定义。可以用XML定义它,我们将使用@ImportResource
@ImportResource("another-application-context.xml")
@Configuration
public class MyApplicationContext {
  ...  
}

如果bean是在另一个@Configuration类中定义的,则可以使用@Import注释:

@Import(OtherConfiguration.class)
@Configuration
public class MyApplicationContext {
  ...
}
  1. 导入其他XML或@Configuration类之后,可以通过在@Configuration类中声明私有成员来使用它们在上下文中声明的bean ,如下所示:
@Autowired
@Qualifier(value = "beanFromSomewhereElse")
private final StrangeBean beanFromSomewhereElse;

或者用它直接作为在其中定义了取决于该豆的方法参数beanFromSomewhereElse使用@Qualifier如下:

@Bean(name = "anotherBean")
public AnotherClass getAnotherClass(@Qualifier (value = "beanFromSomewhereElse") final StrangeBean beanFromSomewhereElse) {
  return new AnotherClassImpl(getSomeClass(), beanFromSomewhereElse);
}
  1. 导入属性与从另一个xml或@Configuration类导入bean非常相似。除了使用,@Qualifier我们将使用@Value以下属性:
@Autowired
@Value("${some.interesting.property}")
private final String someInterestingProperty;

这也可以与SpEL表达式一起使用。

  1. 为了允许spring将此类视为bean容器,我们需要通过将以下标记放在上下文中在主xml中对其进行标记:
<context:annotation-config/>

现在,你可以导入@Configuration与创建简单bean完全相同的类:

<bean class="some.package.MyApplicationContext"/>

有一些方法可以完全避免使用Spring XML,但是它们不在此答案的范围内。你可以在我基于其答案的博客文章中找到这些选项之一。

使用此方法的优缺点

基本上,由于一些优势,我发现这种声明bean的方法比使用XML更舒适。

  1. Typos - @Configuration类已编译,拼写错误将不允许编译
  2. Fail fast (compile time) -如果你忘记注入Bean,则会在编译时失败,而不是像XML那样在运行时失败
  3. Easier to navigate in IDE -在bean的构造函数之间了解依赖关系树。
  4. 可以轻松调试配置启动

正如我所看到的那样,缺点并不多,但我可以想到一些缺点:

  1. 滥用 -代码比XML更容易滥用
  2. 使用XML,你可以基于在编译时不可用但在运行时提供的类定义依赖项。使用@Configuration类时,必须在编译时提供可用的类。通常这不是问题,但是在某些情况下可能是这样。
    底线:在你的应用程序上下文中结合XML@Configuration和注释是完全可以的。Spring并不关心使用bean声明的方法。


 类似资料:
  • 在了解Spring@AutoWired用法这个问题之后,我想为Spring布线的另一个选项类创建一个完整的知识库。 假设我有一个spring XML文件,它如下所示:

  • 某些应用程序可能需要可能需要更改的配置属性,开发人员可能需要将其关闭或重新启动应用程序才能执行此操作。 但是,这可能会导致生产停机并需要重新启动应用程序。 Spring Cloud Configuration Server允许开发人员加载新的配置属性,而无需重新启动应用程序,也不会出现任何停机。 使用Spring Cloud Configuration Server 首先,从https://sta

  • Spring Cloud Configuration Server是一个集中式应用程序,可管理所有与应用程序相关的配置属性。 在本章中,您将详细了解如何创建Spring Cloud Configuration服务器。 创建Spring Cloud配置服务器 首先,从Spring Initializer页面下载Spring Boot项目,然后选择Spring Cloud Config Server依

  • 我试图弄清楚spring的反应性终点,这让我感到困惑。 我有一个endpoint,它返回一个映射的Mono,这个想法只是呈现一些任意的JSON。 作为请求的一部分,我做了一个mono.zip(mono.fromrunnable{...}),在这里我调用API获取数据。 在zip之后,我对结果执行一个.Map操作,并最终返回我希望看到呈现的地图。 当我到达endpoint时,不会呈现任何JSON,但

  • 问题内容: 我正在阅读spring 3.0.x参考文档以了解Spring Autowired注释: 3.9.2 @Autowired和@Inject 我无法理解以下示例。我们需要在XML中做一些工作才能使其工作吗? 例1 例子2 如何自动装配两个类以实现相同的接口并使用相同的类? 例: 将调用哪种设计方法?如何确保Red类的设计方法被调用而不是Blue? 问题答案: TL; DR @Autowir

  • 什么是spring boot Spring Boot是由Pivotal团队提供的全新框架,其设计目的是用来简化新Spring应用的初始搭建以及开发过程。该框架使用了特定的方式来进行配置,从而使开发人员不再需要定义样板化的配置。用我的话来理解,就是spring boot其实不是什么新的框架,它默认配置了很多框架的使用方式,就像maven整合了所有的jar包,spring boot整合了所有的框架(不