spring框架连接数据库的方式有哪些?怎么连接?

近期,有很多的小伙伴都在问,究竟spring框架连接数据库的方式都有哪些呢?应该如何去实现?下面就和小编一起来了解具体的连接方法吧!

下面一共整理了四种方式。

测试主类:

package myspring2;
import java.sql.*;
import javax.sql.DataSource;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class MySpringTest
{
    public static void main(String args[]) throws Exception
    {
        ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
        DataSource dataSource = ctx.getBean("dataSource", DataSource.class);
        String sql = "select * from user_inf";
        Connection connection = dataSource.getConnection();
        Statement stm = connection.createStatement();
        ResultSet rs = stm.executeQuery(sql);
        while (rs.next())
        {
            System.out.println("用户名为:");
            System.out.println(rs.getString(2));
        }
    }
}

第一种方式:

使用spring自带的DriverManagerDataSource

<?xml version="1.0" encoding="UTF-8"?> 
 
<beans xmlns="http://www.springframework.org/schema/beans"
 
  xmlns:aop="http://www.springframework.org/schema/aop"
 
xmlns:tx="http://www.springframework.org/schema/tx"
 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 
xmlns:context="http://www.springframework.org/schema/context" 
 
xmlns:p="http://www.springframework.org/schema/p"
 
  xsi:schemaLocation="
 
          http://www.springframework.org/schema/beans    
 
       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
 
           http://www.springframework.org/schema/tx      
 
     http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
 
           http://www.springframework.org/schema/context
 
           http://www.springframework.org/schema/context/spring-context-3.0.xsd
 
           http://www.springframework.org/schema/aop
 
           http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">
 
 <!-- 使用XML Schema的p名称空间配置 -->
 
  <bean name="dataSource"  class="org.springframework.jdbc.datasource.DriverManagerDataSource" 
 
  p:driverClassName="com.mysql.jdbc.Driver" 
 
  p:url="jdbc:mysql://localhost:3306/test"
 
  p:username="root"
 
  p:password="123456"  / > 
 
  <!-- 采用property的普通配置 相比之下有点麻烦,但是效果是一样的哦,-->
 
<!--    
 
  <bean name="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> 
 
    <property name="driverClassName"  value="com.mysql.jdbc.Driver" />
 
     <property name="url" value="jdbc:mysql://localhost:3306/test" />
 
     <property name="username" value="root" />
 
     <property name="password" value="123456" />
 
    </bean>
 
    -->      
 
</beans>

第二种方式:

使c3p0的核心jar包

<?xml version="1.0" encoding="UTF-8"?>
 
<beans xmlns="http://www.springframework.org/schema/beans"
 
  xmlns:aop="http://www.springframework.org/schema/aop"
 
xmlns:tx="http://www.springframework.org/schema/tx"
 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 
xmlns:context="http://www.springframework.org/schema/context"
 
xmlns:p="http://www.springframework.org/schema/p"
 
  xsi:schemaLocation="
 
          http://www.springframework.org/schema/beans   
 
       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
 
            http://www.springframework.org/schema/tx     
 
     http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
 
           http://www.springframework.org/schema/context
 
            http://www.springframework.org/schema/context/spring-context-3.0.xsd
 
           http://www.springframework.org/schema/aop
 
            http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">
 
  <!-- 使用XML Schema的p名称空间配置   -->
 
<bean name="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" 
 
   p:driverClass="com.mysql.jdbc.Driver" 
 
   p:jdbcUrl="jdbc:mysql://localhost:3306/test"
 
   p:user="root"
 
   p:password="123456" >      
 
</bean>   
 
<!-- 采用property的普通配置 相比之下有点麻烦,但是效果是一样的哦 建议使用上面的-->
 
<!--       <bean name="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"> 
 
            <property name="driverClass"  value="com.mysql.jdbc.Driver" />   
 
            <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/test" />
 
            <property name="user" value="root" />
 
            <property name="password" value="123456" />
 
            </bean>
 
  -->   
 
  </beans>

第三种方式:

使用apache的dbcp插件连接数据库

注:需要下载的jar包:commons-dbcp.jar,commons-pool.jar,commons-collection.jar

<?xml version="1.0" encoding="UTF-8"?> 
 
<beans xmlns="http://www.springframework.org/schema/beans" 
 
xmlns:aop="http://www.springframework.org/schema/aop"
 
xmlns:tx="http://www.springframework.org/schema/tx"
 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 
xmlns:context="http://www.springframework.org/schema/context"
 
  xmlns:p="http://www.springframework.org/schema/p" 
 
xsi:schemaLocation="       
 
   http://www.springframework.org/schema/beans 
 
     http://www.springframework.org/schema/beans/spring-beans-3.0.xsd   
 
        http://www.springframework.org/schema/tx    
 
       http://www.springframework.org/schema/tx/spring-tx-3.0.xsd   
 
        http://www.springframework.org/schema/context 
 
          http://www.springframework.org/schema/context/spring-context-3.0.xsd
 
           http://www.springframework.org/schema/aop 
 
          http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">
 
 <!-- 使用XML Schema的p名称空间配置 -->
 
   <bean name="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
 
  p:driverClassName="com.mysql.jdbc.Driver" 
 
p:url="jdbc:mysql://localhost:3306/test"
 
  p:username="root"
 
  p:password="123456" > 
 
</bean>
 
  
 
    <!-- 采用property的普通配置 相比之下有点麻烦,但是效果是一样的哦 建议使用上面的-->
 
<!--       <bean name="dataSource" class="org.apache.commons.dbcp.BasicDataSource"> 
 
    <property name="driverClassName"  value="com.mysql.jdbc.Driver" />   
 
  <property name="url" value="jdbc:mysql://localhost:3306/test" />
 
     <property name="username" value="root" /> 
 
    <property name="password" value="123456" /> 
 
    </bean>
 
   -->   
 
  </beans>

第四种方式:

使用hibernate数据源,需要hiberante核心jar包

当前三大框架较流行,spring一般和hiberante做搭档,数据库连接方式写在hiberante的配置文件中,在spring管理hibernate中的配置文件中,直接读取hibernate核心配置文件即可。

在使用hibernate连接数据库的时候需要读取hibernate.cfg.xml的配置文件和相应的实体类,可以大致的参照下面的自己进行配置。

<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
  
 <property name="configLocations">
  
   <list>
  
      <value>classpath:com/config/hibernate.cfg.xml</value>
  
   </list>
  
 </property>
  
    <property name="mappingLocations"> 
  
<!-- 所有的实体类映射文件 -->
  
        <list>
  
            <value>classpath:com/hibernate/*.hbm.xml</value>
  
        </list>
  
</property>

spring框架连接数据库的方法你了解了吗?关注本站,有更多spring框架的相关内容可以分享给大家。