Spring properties定义bean

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

Spring提供了丰富的标签和注解来进行bean的定义,除此之外框架来提供了扩展机制让使用可以通过properties来定义bean,与强大的标签式和注解式的bean定义相比,properties提供的规则要简单许多。

key部分用.分隔即通过A.B来进行相关的属性定义,其中A表示bean名称,B通过不同的值还表达不同的含义:

 

  • (class),bean的类型
  • (parent),bean的父bean
  • name,bean的name属性,name是一个普通属性
  • childBean(ref),bean的childBean属性,childBean是一个引用属性
  • (singleton),是否单例
  • (lazy-init),是否懒加载
  • $0,第一个构造子参数
  • (scope),作用域
  • (abstract),是否是抽象bean

 

看一个例子:

bean.properties文件

 

[java] view plain copy

  1. #bean1  
  2. propBean.(class) = spring.beans.properties.PropBean  
  3. propBean.(parent) = commonBean  
  4. propBean.name = name1  
  5. propBean.childBean(ref) = childBean  
  6. propBean.(singleton) = true  
  7. propBean.(lazy-init) = true  
  8.   
  9. #bean2  
  10. childBean.(class) = spring.beans.properties.ChildBean  
  11. childBean.$0 = cid1  
  12. chlldBean.(scope) = singleton  
  13.   
  14. #abstract bean  
  15. commonBean.(class) = spring.beans.properties.CommonBean  
  16. commonBean.id = 1  
  17. commonBean.(abstract) = true  

上面的properties文件定义了三个bean:

 

 

  • commonBean,类型是spring.beans.properties.CommonBean,注入值1到id属性,这是一个抽象bean
  • childBean,类型spring.beans.properties.ChildBean,构造器注入cid1,作用域是singleton
  • propBean,类型是spring.beans.properties.PropBean,父bean是commonBean,注入一个普通属性name,和引用属性childBean,引用的bean是childBean,bean是单例并且懒加载。

 

bean定义文件写好之后,通过PropertiesBeanDefinitionReader来加载解析bean定义,这个解析器的原理很简单,在此不做详细分析,下面是实例代码。

 

[java] view plain copy

  1. public void test() {  
  2.     GenericApplicationContext ctx = new GenericApplicationContext();  
  3.     Resource res = new ClassPathResource(  
  4.             "spring/beans/properties/bean.properties");  
  5.     PropertiesBeanDefinitionReader propReader = new PropertiesBeanDefinitionReader(  
  6.             ctx);  
  7.     propReader.loadBeanDefinitions(res);  
  8.     PropBean propBean = (PropBean) ctx.getBean("propBean");  
  9.     assertNotNull(propBean);  
  10.     assertNotNull(propBean.getId());  
  11.   
  12.     assertNotNull(propBean.getChildBean());  
  13.     assertNotNull(propBean.getChildBean().getCid());  
  14. }  

也可以完全不用单独定义个properties文件,只需要把相关的key-value放到一个Map中,再通过PropertiesBeanDefinitionReader加载这个map中的key-value。

 

通过这种方式,使用者可以根据需要自定义些bean的定义规则,比如可以把bean定义放在数据库中,把数据库中的信息读取出来拼接成满足properties规则的bean定义,在Spring中就定义了一个org.springframework.jdbc.core.support.JdbcBeanDefinitionReader来完成这种需求,看下这个类的代码。

 

[java] view plain copy

  1. public class JdbcBeanDefinitionReader {  
  2.   
  3.     private final PropertiesBeanDefinitionReader propReader;  
  4.   
  5.     private JdbcTemplate jdbcTemplate;  
  6.   
  7.   
  8.     /** 
  9.      * Create a new JdbcBeanDefinitionReader for the given bean factory, 
  10.      * using a default PropertiesBeanDefinitionReader underneath. 
  11.      * <p>DataSource or JdbcTemplate still need to be set. 
  12.      * @see #setDataSource 
  13.      * @see #setJdbcTemplate 
  14.      */  
  15.     public JdbcBeanDefinitionReader(BeanDefinitionRegistry beanFactory) {  
  16.         this.propReader = new PropertiesBeanDefinitionReader(beanFactory);  
  17.     }  
  18.   
  19.     /** 
  20.      * Create a new JdbcBeanDefinitionReader that delegates to the 
  21.      * given PropertiesBeanDefinitionReader underneath. 
  22.      * <p>DataSource or JdbcTemplate still need to be set. 
  23.      * @see #setDataSource 
  24.      * @see #setJdbcTemplate 
  25.      */  
  26.     public JdbcBeanDefinitionReader(PropertiesBeanDefinitionReader beanDefinitionReader) {  
  27.         Assert.notNull(beanDefinitionReader, "Bean definition reader must not be null");  
  28.         this.propReader = beanDefinitionReader;  
  29.     }  
  30.   
  31.   
  32.     /** 
  33.      * Set the DataSource to use to obtain database connections. 
  34.      * Will implicitly create a new JdbcTemplate with the given DataSource. 
  35.      */  
  36.     public void setDataSource(DataSource dataSource) {  
  37.         this.jdbcTemplate = new JdbcTemplate(dataSource);  
  38.     }  
  39.   
  40.     /** 
  41.      * Set the JdbcTemplate to be used by this bean factory. 
  42.      * Contains settings for DataSource, SQLExceptionTranslator, NativeJdbcExtractor, etc. 
  43.      */  
  44.     public void setJdbcTemplate(JdbcTemplate jdbcTemplate) {  
  45.         Assert.notNull(jdbcTemplate, "JdbcTemplate must not be null");  
  46.         this.jdbcTemplate = jdbcTemplate;  
  47.     }  
  48.   
  49.   
  50.     /** 
  51.      * Load bean definitions from the database via the given SQL string. 
  52.      * @param sql SQL query to use for loading bean definitions. 
  53.      * The first three columns must be bean name, property name and value. 
  54.      * Any join and any other columns are permitted: e.g. 
  55.      * {@code SELECT BEAN_NAME, PROPERTY, VALUE FROM CONFIG WHERE CONFIG.APP_ID = 1} 
  56.      * It's also possible to perform a join. Column names are not significant -- 
  57.      * only the ordering of these first three columns. 
  58.      */  
  59.     public void loadBeanDefinitions(String sql) {  
  60.         Assert.notNull(this.jdbcTemplate, "Not fully configured - specify DataSource or JdbcTemplate");  
  61.         final Properties props = new Properties();  
  62.         this.jdbcTemplate.query(sql, new RowCallbackHandler() {  
  63.             public void processRow(ResultSet rs) throws SQLException {  
  64.                 String beanName = rs.getString(1);  
  65.                 String property = rs.getString(2);  
  66.                 String value = rs.getString(3);  
  67.                 // Make a properties entry by combining bean name and property.  
  68.                 props.setProperty(beanName + "." + property, value);  
  69.             }  
  70.         });  
  71.         this.propReader.registerBeanDefinitions(props);  
  72.     }  
  73.   
  74. }  

此外,通过理解PropertiesBeanDefinitionReader的实现方式,发现也可以通过扩展BeanDefinitionReader来扩展bean定义,我们可以通过继承AbstractBeanDefinitionReader来完成这种扩展。

转载于:https://my.oschina.net/xiaominmin/blog/1611342

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/539575.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

mongodb java 单例_Java单例MongoDB工具类

我经常对MongoDB进行一些基础操作&#xff0c;将这些常用操作合并到一个工具类中&#xff0c;方便自己开发使用。没用Spring Data、Morphia等框架是为了减少学习、维护成本&#xff0c;另外自己直接JDBC方式的话可以更灵活&#xff0c;为自己以后的积累留一个脚印。Java驱动版本…

Oracle中执行存储过程call和exec区别

在sqlplus中这两种方法都可以使用&#xff1a; exec pro_name(参数1..); call pro_name(参数1..); 区别&#xff1a; 1. 但是exec是sqlplus命令&#xff0c;只能在sqlplus中使用&#xff1b;call为SQL命令&#xff0c;没有限制. 2. 存储过程没有参数时,exec可以直接跟过…

每秒处理10万订单乐视集团支付架构

原文&#xff1a;http://www.iteye.com/news/31550 ----------- 随着乐视硬件抢购的不断升级&#xff0c;乐视集团支付面临的请求压力百倍乃至千倍的暴增。作为商品购买的最后一环&#xff0c;保证用户快速稳定的完成支付尤为重要。所以在15年11月&#xff0c;我们对整个支付…

X--名称空间详解

转自:http://blog.csdn.net/lisenyang/article/details/18312039 X名称空间里面的成员(如X:Name,X:Class)都是写给XAML编译器看的、用来引导XAML代码将XAML代码编译为CLR代码。 4.1X名称空间里面到底都有些什么&#xff1f; x名称空间映射的是:http://schemas.microsoft.com/wi…

事物 php,什么是php事务

事务&#xff1a;用于保证数据的一致性&#xff0c;他由一组相关的dml语句组成&#xff0c;改组的dml语句要么全部成功&#xff0c;要么全部失败。当前版本的插件并不是事务安全的&#xff0c;因为他并没有识别全部的事务操作。SQL 事务单元是在单一服务器中运行的。插件并不能…

Flask form(登录,注册)

用户登录 from flask import Flask, render_template, request, redirect from wtforms import Form from wtforms.fields import core from wtforms.fields import html5 from wtforms.fields import simple from wtforms import validators from wtforms import widgetsapp …

怎么看so文件是哪个aar引进来的_手机爱奇艺下载视频存在哪个文件夹

我们很多朋友喜欢看视频使用爱奇艺观看&#xff0c;并且喜欢直接把视频缓冲到手机里&#xff0c;或是直接下载视频文件&#xff0c;但是经常不知道手机爱奇艺下载视频存在哪个文件夹&#xff0c;不知道怎么分享给好友或是传到电脑上&#xff0c;下面就来简单介绍一下。手机爱奇…

esxi能直通的显卡型号_显卡刷bios教程

一般来说显卡默认的出厂bios就已经很稳定&#xff0c;如果没有特殊情况下建议不要刷显卡bios。一般而言部分网友刷显卡BIOS目的是开核或超频&#xff0c;那么对于一个不会刷显卡bios的网友来说肯定会问显卡怎么刷bios类似的问题&#xff0c;那么本文这里就说一下有关显卡怎么刷…

关于Linux网卡调优之:RPS (Receive Packet Steering)

昨天在查LVS调度均衡性问题时&#xff0c;最终确定是 persistence_timeout 参数会使用IP哈希。目的是为了保证长连接&#xff0c;即一定时间内访问到的是同一台机器。而我们内部系统&#xff0c;由于出口IP相对单一&#xff0c;所以总会被哈希到相同的RealServer。 过去使用LVS…

footer.php置底,CSS五种方式实现Footer置底

页脚置底(Sticky footer)就是让网页的footer部分始终在浏览器窗口的底部。当网页内容足够长以至超出浏览器可视高度时&#xff0c;页脚会随着内容被推到网页底部&#xff1b;但如果网页内容不够长&#xff0c;置底的页脚就会保持在浏览器窗口底部。方法一&#xff1a;将内容部分…

安卓adapter适配器作用_自带安卓系统的便携屏,能玩出什么花样?

之前说到去年出差太多&#xff0c;平常就把便携屏带上了。之前也说了如果是像笔者这样的出差狗也知道&#xff0c;托运需要提前去机场一路着急忙慌&#xff0c;不托运只需要打印登机牌(纸质才给报销)排队安检登机就完了。有的时候可以把标准显示器来回寄&#xff0c;只要包装强…

Typora markdown公式换行等号对齐_Typora编写博客格式化文档的最佳软件

Typora-编写博客格式化文档的最佳软件Typora 不仅是一款支持实时预览的 Markdown 文本编辑器&#xff0c;而且还支持数学公式、代码块、思维导图等功能。它有 OS X、Windows、Linux 三个平台的版本&#xff0c;是完全免费的。作为技术人员或者专业人员&#xff0c;使用Markdown…

docker-machine

vbox安装 sudo /sbin/vboxconfig &#xfffc; yum install gcc make yum install kernel-devel-3.10.0-514.26.2.el7.x86_64 转载于:https://www.cnblogs.com/yixiaoyi/p/dockermachine.html

intention lock_写作技巧:你写出来的情节有用吗?好情节的原则——LOCK系统

读者喜欢一本小说的原因只有一个&#xff1a;很棒的故事。——Donald Maass来&#xff0c;话筒对准这位小作家&#xff0c;请问你是如何构思故事的&#xff1f;是习惯于现在脑海中把故事都想好了&#xff0c;才开始写作&#xff1f;还是习惯于临场发挥&#xff0c;喜欢一屁股坐…

power designer数据流图_鲲云公开课 | 三分钟带你了解数据流架构

目前&#xff0c;市场上的芯片主要包括指令集架构和数据流架构两种实现方式。指令集架构主要包括X86架构、ARM架构、精简指令集运算RISC-V开源架构&#xff0c;以及SIMD架构。总体来说&#xff0c;四者都属于传统的通用指令集架构。传统的指令集架构采用冯诺依曼计算方式&#…

linux php环境搭建教程,linux php环境搭建教程

linux php环境搭建的方法&#xff1a;首先获取相关安装包&#xff1b;然后安装Apache以及mysql&#xff1b;接着修改配置文件“httpd.conf”&#xff1b;最后设置环境变量和开机自启&#xff0c;并编译安装PHP即可。一、获取安装包PHP下载地址&#xff1a;http://cn.php.net/di…

jsp放在web-inf下的注意事项

原文&#xff1a;http://blog.csdn.net/whatlookingfor/article/details/38381881 ------------------------------------------------- web-inf目录是不对外开放的&#xff0c;外部没办法直接访问到。所有只能通过映射来访问&#xff0c;比如映射为一个action或者servlet通过…

asp.net 获取全部在线用户_Qamp;A | 在线考试问卷答疑

01.如何批量导入试题&#xff1f;如果您已经在word或者excel中准备好了考试文档&#xff0c;通过批量导入试题的方式&#xff0c;可以让考试问卷的制作更加方便快捷。详细了解批量导入考试的文本格式&#xff1a;【点击此处】02.如何进行考试随机抽题&#xff1f;老师事先建立题…

PHP 框架 模块化,Laravel 的模块化开发框架 Notadd RC1

本文我们要和大家分享 Laravel 的模块化开发框架 Notadd RC1 的介绍&#xff0c;它的优点是修复了首页编辑模式下滚动的BUG (Eleven)&#xff0c;修复了后台菜单管理修改后不跳转的BUG (ganlanshu0211)&#xff0c;修复后台 ESLint 的 Camelcase 的错误 (狒狒)&#xff0c;暂时…

spring mvc 工作流程

1A&#xff09;客户端发出http请求&#xff0c;只要请求形式符合web.xml 文件中配置的*.action的话&#xff0c;就由DispatcherServlet 来处理。 1B&#xff09;DispatcherServlet再将http请求委托给映射器 的对象来将http请求交给对应的Action来处理 2&#xff0…