码迷,mamicode.com
首页 > 其他好文 > 详细

IOC(十二) - xml管理之配置外部文件

时间:2020-10-31 02:06:27      阅读:16      评论:0      收藏:0      [点我收藏+]

标签:常见   code   根据   文件配置   方式   ruid   oca   ext   src   

常见的是配置数据库文件, 以配置Druid连接池为例, 直接配置连接池方式如下:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

    <!--直接配置连接池(需要先导入相关依赖)-->
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
        <property name="url" value="jdbc:mysql://localhost:3306/userDB"></property>
        <property name="username" value="root"></property>
        <property name="password" value="123"></property>
    </bean>
</beans>

但是这样写的话, 数据库的配置信息就写死在xml文件里了, 不利于后期维护, 所以我们采用导入外部文件的方式:

先创建数据库的配置文件:

技术图片

 

 再在xml文件中进行配置:(需要先配置context名称空间)

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
                           http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

    <!--引入外部文件-->
    <context:property-placeholder location="classpath:com/ryan/spring5/autowire/jdbc.properties"/>
    <!--根据外部文件配置数据库-->
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="${prop.dirverClass}"></property>
        <property name="url" value="${prop.url}"></property>
        <property name="username" value="${prop.userName}"></property>
        <property name="password" value="${prop.password}"></property>
    </bean>
</beans>

 

IOC(十二) - xml管理之配置外部文件

标签:常见   code   根据   文件配置   方式   ruid   oca   ext   src   

原文地址:https://www.cnblogs.com/Ryan368/p/13902843.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!