9.Spring---SpEl和注入外部值

一、使用属性文件外部注入

1.1处理外部值最简单的方式就是使用属性文件,通过Spring的Enviroment来检索到

1.使用@PropertySource注解声明属性文件的位置
2.使用Enviroment查找到属性文件的值。
3.Enviroment可以自动注入。是Spring框架自带的类。

9.Spring---SpEl和注入外部值_第1张图片
Paste_Image.png

1.2 在xml中用占位符读取值

1.首先要提供一个PropertyPlaceHolder,这样spring会自动扫描属性文件。
2.在xml中使用占位符:&{值}
3.在xml中告诉spring扫描属性文件

9.Spring---SpEl和注入外部值_第2张图片
Paste_Image.png
Paste_Image.png
Paste_Image.png

你可能感兴趣的:(9.Spring---SpEl和注入外部值)