首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

Spring 配备中的 ${}

2012-07-20 
Spring 配置中的 ${}? ? !-- GENERAL DEFINITIONS --?!-- Configurer that rep

Spring 配置中的 ${}

? ? <!-- ============ GENERAL DEFINITIONS========== -->

?

<!-- Configurer that replaces ${...} placeholders with values from a properties file -->

<!-- (in this case, JDBC-related settings for the dataSource definition below) -->

<bean id="propertyConfigurer"

class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">

<property name="location">

<value>classpath:spring/jdbc-oracle.properties</value>

</property>

</bean>

<!-- =========== RESOURCE DEFINITIONS ============ -->

?

<!-- Local DataSource that works in any environment -->

<bean id="dataSource"

class="org.springframework.jdbc.datasource.DriverManagerDataSource">

<property name="driverClassName">

<value>${jdbc.driverClassName}</value>

</property>

<property name="url">

<value>${jdbc.url}</value>

</property>

<property name="username">

<value>${jdbc.username}</value>

</property>

<property name="password">

<value>${jdbc.password}</value>

</property>

</bean>

当jdbc-oracle.properties文件加载下后,${}即可取出其中的内容

热点排行