SpEL表达式读取properties配置⽂件
1. 将properties⽂件中的内容加载到⼀个bean中
<bean id="configProperties"class="org.springframework.fig.PropertiesFactoryBean">
<property name="locations">
properties文件用什么打开>smartypants绘本翻译<list>
<value>classpath:app.properties</value>java从入门到精通资源包
</list>
css文本加粗属性</property>
</bean>
1. 其中classpath:后是你要读取的properties⽂件位置,我的直接放在Resourse⽬录下
2. value中的properties⽂件,其实是要加载到PropertiesFactory类的构造器locations属性内
3. 成功将properties装载到⼀个bean中
2. 引⽤将.properties⽂件所装配的bean
dbms属于什么软件<bean id="music"class="chapter3.Music">
万能弹簧机编程教学视频<constructor-arg name="artist"value="#{configProperties['disc.title']}"/>
<constructor-arg name="title"value="#{configProperties['disc.artist']}"/>
</bean>
1. 其中#{configProperties[‘disc.title’]}就是El表达式,configProperties就是装配好properties⽂件的bean的id
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论