当前位置:首页 > 科技  > 软件

Spring Bean 命名各种方式,看这一篇就够了

来源: 责编: 时间:2023-12-04 09:19:40 185观看
导读在 Spring 框架中,每个 bean 必须至少有一个唯一的名称。Spring 遵循简单且默认的命名策略来确定 bean 的名称,无论我们使用 XML 配置还是基于Java代码配置。本文将详细讨论这些策略。1.使用@Component的默认Bean命名默

在 Spring 框架中,每个 bean 必须至少有一个唯一的名称。Spring 遵循简单且默认的命名策略来确定 bean 的名称,无论我们使用 XML 配置CI828资讯网——每日最新资讯28at.com

还是基于Java代码配置。本文将详细讨论这些策略。CI828资讯网——每日最新资讯28at.com

1.使用@Component的默认Bean命名

默认情况下,Spring会使用声明Bean类型的简单名称,将第一个字母改为小写,并使用生成的值来命名Bean。此种方式适用于所有定型注解(@Service@Repository 等)。CI828资讯网——每日最新资讯28at.com

下面我我们声明一个非常简单的bean,如下所示:CI828资讯网——每日最新资讯28at.com

@Configuration@ComponentScanpublic class AppConfig { //...}@Componentpublic class DemoBean {  //...}

DemoBean使用@Component注解,当我们从应用程序上下文中检索 bean 并打印其名称时,它会打印“ demoBean ”。CI828资讯网——每日最新资讯28at.com

var applicationContext = new AnnotationConfigApplicationContext(AppConfig.class);Arrays.stream(applicationContext.getBeanDefinitionNames()).forEach(System.out::println);

程序输出:CI828资讯网——每日最新资讯28at.com

org.springframework.context.annotation.internalConfigurationAnnotationProcessororg.springframework.context.annotation.internalAutowiredAnnotationProcessororg.springframework.context.annotation.internalCommonAnnotationProcessororg.springframework.context.annotation.internalPersistenceAnnotationProcessororg.springframework.context.event.internalEventListenerProcessororg.springframework.context.event.internalEventListenerFactoryappConfigdemoBean

在以上结果输出中,我们可以看到 Spring 创建的基础设施 bean,还有我们创建的beanappConfigdemoBean.CI828资讯网——每日最新资讯28at.com

2. 使用@Bean的默认Bean命名

当我们使用@Bean注解来创建一个新的bean时,该bean将以创建它的方法命名。CI828资讯网——每日最新资讯28at.com

让我们通过一个示例来理解,我们创建两个具有不同方法名称的DemoBean类型的 bean 。CI828资讯网——每日最新资讯28at.com

@Configurationpublic class AppConfig {  @Bean  DemoBean demoBean(){    return new DemoBean();  }  @Bean  DemoBean anotherDemoBean(){    return new DemoBean();  }}

当我们运行代码并打印bean名称时,会输出以下结果:CI828资讯网——每日最新资讯28at.com

...appConfigdemoBeananotherDemoBean

3. 带有值的显式 Bean 命名

对于所有的注解类型,都有一个默认属性名为"value",可以用一个值进行初始化,作为用于标识bean的名称。CI828资讯网——每日最新资讯28at.com

@Component(value = "newBeanName")public class DemoBean { //...}

注意,@Component(value = "newBeanName") 等同于 @Component("newBeanName")。它们产生一样的结果。CI828资讯网——每日最新资讯28at.com

同样@Bean注解有两个属性name  value,可以为bean定义一个显式名称。CI828资讯网——每日最新资讯28at.com

@Configurationpublic class AppConfig {  @Bean(name = "newBeanName")  DemoBean demoBean(){    return new DemoBean();  }  @Bean(value = "anotherNewBeanName")  DemoBean anotherDemoBean(){    return new DemoBean();  }}

当我们运行代码并打印bean名称时,会输出以下结果:CI828资讯网——每日最新资讯28at.com

...appConfignewBeanNameanotherNewBeanName

4. Bean 名称别名:多个 Bean 名称

@Bean 注解的 name 或 value 属性可以指定一个值数组,用于引用 bean 的名称。当这样做时,数组中的第一个值将成为主要名称,而其他值将成为别名。CI828资讯网——每日最新资讯28at.com

@Bean(value = {"newBeanName", "newBeanName-1", "newBeanName-2"})DemoBean demoBean(){  return new DemoBean();}

现在,当打印 bean 的名称时,它仍然是 "newBeanName"。但是当我们打印 bean 的名称别名时,我们会得到额外的名称,即 "newBeanName-1" 和 "newBeanName-2"。CI828资讯网——每日最新资讯28at.com

var applicationContext = new AnnotationConfigApplicationContext(AppConfig.class);Arrays.stream(applicationContext.getBeanDefinitionNames()).forEach(System.out::println);var demoBean = applicationContext.getBeansOfType(DemoBean.class);demoBean.forEach((k, v) -> {  var aliases = applicationContext.getAliases(k);  if (aliases.length > 0) {    Arrays.stream(aliases).forEach(System.out::println);  }});

输出CI828资讯网——每日最新资讯28at.com

...appConfignewBeanNamenewBeanName-2newBeanName-1

5.生成自定义Bean名称

与Spring中的所有功能类似,bean的命名也可以进行自定义。为了进行自定义名称生成,我们可以定义一个类,继承 AnnotationBeanNameGenerator 并在 @ComponentScan 注解中指定该类的名称。CI828资讯网——每日最新资讯28at.com

@Configuration@ComponentScan(nameGenerator = CustomBeanNameGenerator.class)public class AppConfig { //...}

接下来,我们通过在 CustomBeanNameGenerator 类中重写 buildDefaultBeanName() 方法来定义自定义的名称生成逻辑。CI828资讯网——每日最新资讯28at.com

以下示例会返回由小写的简单类名与唯一标识符连接而成的 bean 名称。CI828资讯网——每日最新资讯28at.com

public class CustomBeanNameGenerator extends AnnotationBeanNameGenerator {  @Override  protected String buildDefaultBeanName(BeanDefinition definition, BeanDefinitionRegistry registry) {    var beanName = definition.getBeanClassName()      .substring(definition.getBeanClassName().lastIndexOf(".") + 1)      .toLowerCase(Locale.ROOT);    var uid = UUID.randomUUID().toString().replace("-","").substring(0,8);    return beanName + "-" + uid;  }}

输出CI828资讯网——每日最新资讯28at.com

appConfigdemobean-889ed00b

总结

在本Spring教程中,我们学习了5种bean命名策略希望对你有所帮助。CI828资讯网——每日最新资讯28at.com

本文链接:http://www.28at.com/showinfo-26-37241-0.htmlSpring Bean 命名各种方式,看这一篇就够了

声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。邮件:2376512515@qq.com

上一篇: 《辐射》真人剧集新海报:女主角路西踏出避难所

下一篇: 使用Ruff改善Python编程风格

标签:
  • 热门焦点
Top