Java项目使用Spring jdbc连接数据库

用spring一直做web项目开发, 今天突然想能不能在Java项目中使用spring,进行数据库连接.

一 ,使用spring的jdbc

1.在myeclipse添加spring jar包,

添加Spring2.5 Core/AOP/ JDBC Library

2.在applicationContext.xml中,配置jdbc bean:

<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">   <property name="driverClassName" value="Oracle.jdbc.driver.OracleDriver"></property>   <property name="url" value="jdbc:oracle:thin:@10.217.3.2:1521:orcl"></property>   <property name="username" value="*"></property>   <property name="password" value="*"></property>  

注:这里使用spring的datasource

org.springframework.jdbc.datasource.DriverManagerDataSource

可选的还有:

org.springframework.jdbc.datasource.SingleConnectionDataSource

区别: DriverManagerDataSource -> 在每一个连接请求时都新建一个连接

SingleConnectionDataSource ->     在每一个连接请求时都返回同一个连接

3. 获得dataSource bean对象

ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");    ds = (DataSource)ctx.getBean("dataSource");  

4.获得连接对象Connection及Statement

Connection conn = ds.getConnection();   Statement sm = conn.createStatement();  

5.执行向数据库插入记录操作

String sqlString = "insert into bryanttesttable values(2,'bryant')";   sm.execute(sqlString);  

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/b3413601abc2dcd91ee3d2482c37c3eb.html