例如,要载入配置文件中的mysql配置信息:
jdbc.driver=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://localhost:3306/mypage jdbc.username=root jdbc.password=123456
我们需要在spring配置文件中定义PropertyPlaceholderConfigurer的location属性,这个location指向配置文件的位置:
属性:ignoreUnresolvablePlaceholders为是否忽略不可解析的 Placeholder
http://www。csdn123。com/html/exception/689/689583_689589_689584.htm
PropertyPlaceholderConfigurer
类的systemPropertiesModeName
的属性是SYSTEM_PROPERTIES_MODE_OVERRIDE
这意味着可以从jvm虚拟机的参数中获得配置信息。
转自:http://outofmemory.cn/code-snippet/3708/spring-properties-file-location
时间: 2024-10-06 00:30:58