spring配置文件中不能使用property

2024-11-19 07:41:20
推荐回答(2个)
回答1:

能用的!可能是你的IDE有关!!!你可以参考一下!在配置文件中打

回答2:

property文件可以很方便的在部署运行阶段改变一些特定配置属性,比如数据库连接等。然后在程序中根据键名使用property文件中的特定属性。
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">

classpath:jdbc.properties


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

通过properties文件,获取driverClassName值
${driverName}