Spring学习笔记-注入实战篇

来源:互联网 发布:sql case when 编辑:程序博客网 时间:2024/04/26 22:55

 

spring对各种数据类型都提供了注入支持,像java基本类型,对象,集合等,这篇文章以代码实践为主,代码注释中会解释注入的细节

测试类中包含了我们编程中最常见的数据结构

 

看下在配置文件中如何对各种类型注入

 

打印输出

 

age=20

weight=142.5

name=张三

registed=true

properties={p2=567,p1=789,}

attributes={a1=12345,a2=hello-world,}

scores={90,98,87,}

sets={你好,123,null,}

 

附BaseSpring类

 

 

原创粉丝点击