spring通过xml方式加载properties文件
Posted 牧阳人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring通过xml方式加载properties文件相关的知识,希望对你有一定的参考价值。
<context:property-placeholder location=""/>标签,可以用来加载properties配置文件
<context:property-placeholder location="classpath:config/db.properties"/>
db.user=root
db.password=111111
db.driver=com.mysql.cj.jdbc.Driver
db.url=jdbc:mysql://localhost:3306/testlogin?serverTimezone=GMT%2B8
以上是关于spring通过xml方式加载properties文件的主要内容,如果未能解决你的问题,请参考以下文章
spring框架是怎么样通过properties来获得对象的?