property文件可以很方便的在部署运行阶段改变一些特定配置属性,比如数据库连接等。然后在程序中根据键名使用property文件中的特定属性。
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
classpath:jdbc.properties
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
通过properties文件,获取driverClassName值
${driverName}