欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

6、Spring使用外部属性文件

程序员文章站 2022-05-24 15:30:32
...

导入才p3p0和数据连接的jar包

beans-properties.xml配置文件:

    <!-- 导入属性文件 -->
    <context:property-placeholder location="classpath:db.properties"/>

    <!-- 使用外部化属性文件属性 -->
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="user" value="${jdbc.user}"></property>
        <property name="password" value="${jdbc.password}"></property>
        <property name="driverClass" value="${jdbc.driverClass}"></property>
        <property name="jdbcUrl" value="${jdbc.jdbcUrl}"></property>
    </bean>

db.properties配置文件:

    jdbc.user=root
    jdbc.password=localhost123
    jdbc.driverClass=com.mysql.jdbc.Driver
    jdbc.jdbcUrl=jdbc:mysql:///javaweb

    jdbc.initPoolSize=5
    jdbc.maxPoolSize=10

测试类:

public class Main {
    public static void main(String[] args) throws SQLException {

        ApplicationContext ctx=new ClassPathXmlApplicationContext("beans-properties.xml");

        DataSource dataSource=(DataSource) ctx.getBean("dataSource");
        System.out.println(dataSource.getConnection());


    }

运行结果
6、Spring使用外部属性文件

相关标签: 外部属性