TA的每日心情 | 开心 2021-3-12 23:18 |
---|
签到天数: 2 天 [LV.1]初来乍到
|
-
- <bean id="placeholderConfig" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
- <property name="location">
- <!-- 这里使用init.properties文件 -->
- <value>/init.properties</value>
- </property>
- </bean>
-
-
- <!-- 从上面指定的文件中读取配置dataSource的各个属性值,进行配置 -->
- <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
- <property name="driverClassName">
- <value>${datasource.driverClassName}</value>
- </property>
- <property name="url">
- <value>${datasource.url}</value>
- </property>
- <property name="username">
- <value>${datasource.username}</value>
- </property>
- <property name="maxActive">
- <value>${datasource.maxActive}</value>
- </property>
- <property name="maxIdle">
- <value>${datasource.maxIdle}</value>
- </property>
- <property name="maxWait">
- <value>${datasource.maxWait}</value>
- </property>
- <property name="defaultAutoCommit">
- <value>${datasource.defaultAutoCommit}</value>
- </property>
- </bean>
-
复制代码 |
|