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

通过获取配置文件的方式获取dataSource

时间:2017-08-18 18:41:14      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:str   ...   val   tor   ack   XML   方式   jdbc   void   

第一步:新建工程  SecondSpring

文件目录结构如下:

技术分享

第二步: 导入spring相关的jar包,已经 mysql的jar包

过程略...

 

第三步: 新建连接数据库的配置文件

db.properties

jdbc.driverClassName=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/test
jdbc.username=root
jdbc.password=123456

 

第四步:新增spring配置文件

common.xml

<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-2.5.xsd">
    
    <import resource="xmlfolder/app1.xml" />
    <import resource="xmlfolder/innerbean.xml" />
    <import resource="xmlfolder/singleton.xml" />
    <import resource="xmlfolder/annotation.xml" />
    <import resource="xmlfolder/gather.xml" />
    <import resource="xmlfolder/date.xml" />
    <import resource="xmlfolder/db.xml" />
</beans>    

db.xml

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:p="http://www.springframework.org/schema/p"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
    
  <!--用于加载db.properties配置文件,否则下面的$ 无法使用 --> <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="location"> <value>db.properties</value> </property> </bean> <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <property name="driverClassName" value="${jdbc.driverClassName}" /> <property name="url" value="${jdbc.url}" /> <property name="username" value="${jdbc.username}" /> <property name="password" value="${jdbc.password}" /> </bean> </beans>

 

第五步:  新建测试类

JDBCTest.java

package com.xuzhiwen.spring7;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.jdbc.datasource.DriverManagerDataSource;

public class JDBCTest {
    public static void main(String[] args) {
        ApplicationContext app = new ClassPathXmlApplicationContext("common.xml");
        DriverManagerDataSource ds = (DriverManagerDataSource) app.getBean("dataSource");
        System.out.println("url:"+ds.getUrl());
        System.out.println("username:"+ds.getUsername());
        System.out.println("password:"+ds.getPassword());
    }
}

 

第六步:运行结果如下

技术分享

 

通过获取配置文件的方式获取dataSource

标签:str   ...   val   tor   ack   XML   方式   jdbc   void   

原文地址:http://www.cnblogs.com/beibidewomen/p/7390800.html

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