1. 在我们配置数据源的时候urlpasswordusername往往不直接写在XML配置文件中,而是通过外部的一个*.properties文件来引入。<br />思考了一下,这种引入外部配置文件的方式,一定是在Spring提供了一个将占位符转换成具体内容的一段代码。换成配置的方式就是:`<context:property-placeholder location="classpath:xxxx"/>` 。<br />[https://gitee.com/gao_xi/spring-demo1/tree/properties-demo/](https://gitee.com/gao_xi/spring-demo1/tree/properties-demo/)