system.properties放在 config 包下:mysql
user=root password=root jdbcUrl=jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=UTF-8; driverClass=com.mysql.jdbc.Driver
spring 配置文件 xml 中:
spring
<!-- 使用PropertyPlaceholderConfigurer讀取system.property文件 s --> <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list> <value>classpath:config/system.properties</value> </list> </property> </bean> <!-- 使用PropertyPlaceholderConfigurer讀取system.property文件 e -->