服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Java教程 - Spring Boot如何动态创建Bean示例代码

Spring Boot如何动态创建Bean示例代码

2020-12-30 11:13西夏一品堂 Java教程

这篇文章主要给大家介绍了关于Spring Boot如何动态创建Bean的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧。

前言

本文主要给大家介绍了关于Spring Boot动态创建Bean的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧。

SpringBoot测试版本:1.3.4.RELEASE

参考代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package com.spring.configuration;
 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
import org.springframework.beans.factory.support.DefaultListableBeanFactory;
import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.jdbc.core.JdbcTemplate;
 
@Configuration
/**
 * 这里的conditional是一个可选条件,表示当这个表达式为true的时候,才动态创建bean
 */
@ConditionalOnExpression("${my.configuration.enabled}")
public class DynamicConfiguration
{
 @Autowired
 private ApplicationContext applicationContext;
  
 /**
  * 这个方法返回Runnable只是一个幌子,最重要的是执行方法里面的代码
  */
 @Bean
 public Runnable dynamicConfiguration() throws Exception
 {
  ConfigurableApplicationContext context = (ConfigurableApplicationContext)applicationContext;
  DefaultListableBeanFactory beanFactory = (DefaultListableBeanFactory)context.getBeanFactory();
   
  BeanDefinitionBuilder beanDefinitionBuilder = BeanDefinitionBuilder.rootBeanDefinition(UserService.class);
  /**
   * 设置属性
   */
  beanDefinitionBuilder.addPropertyValue("name", "myConfigure");
  beanDefinitionBuilder.addPropertyValue("jdbcTemplate", applicationContext.getBean(JdbcTemplate.class));
   
  /**
   * 注册到spring容器中
   */
  beanFactory.registerBeanDefinition("userService", beanDefinitionBuilder.getBeanDefinition());
  return null;
 }
}
class UserService
{
 private String name;
 private JdbcTemplate jdbcTemplate;
 public String getName()
 {
  return name;
 }
 public void setName(String name)
 {
  this.name = name;
 }
 public JdbcTemplate getJdbcTemplate()
 {
  return jdbcTemplate;
 }
 public void setJdbcTemplate(JdbcTemplate jdbcTemplate)
 {
  this.jdbcTemplate = jdbcTemplate;
 }
}

之后,就可以使用如下方式获取对象了

?
1
2
applicationContext.getBean(UserService.class);
applicationContext.getBean("userService", UserService.class)

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。

原文链接:http://blog.csdn.net/mn960mn/article/details/51352007

延伸 · 阅读

精彩推荐