`

SpringJdbc的应用举例

 
阅读更多
   这几天在研究底层框架的异同,突然想起还有个springJdbc好像以前用过还不错,可是如何在不使用ssh框架的前提下单独使用spring的jdbc这还是头一次,让我头疼了一下,终于还是搞定了,以下是我整个测试过程的全部应用代码、测试代码、及配置文件详细情况。

第一步:先写好一个实体类People:
package com.ego.springjdbc.vo;

import java.io.Serializable;
import java.sql.Date;

public class People implements Serializable{
	
	private int id;  
	private String name;  
	private Date birthDay;  
	private Boolean sex;  
	private Double weight;  
	private float height;
	
	public People(){
		
	}


	public People(int id, String name, Date birthDay, Boolean sex,
			Double weight, float height) {
		super();
		this.id = id;
		this.name = name;
		this.birthDay = birthDay;
		this.sex = sex;
		this.weight = weight;
		this.height = height;
	}




	public int getId() {
		return id;
	}
	public void setId(int id) {
		this.id = id;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public Date getBirthDay() {
		return birthDay;
	}
	public void setBirthDay(Date birthDay) {
		this.birthDay = birthDay;
	}
	public Boolean getSex() {
		return sex;
	}
	public void setSex(Boolean sex) {
		this.sex = sex;
	}
	public Double getWeight() {
		return weight;
	}
	public void setWeight(Double weight) {
		this.weight = weight;
	}
	public float getHeight() {
		return height;
	}
	public void setHeight(float height) {
		this.height = height;
	}


	@Override
	public String toString() {
		return "People [birthDay=" + birthDay + ", height=" + height + ", id="
				+ id + ", name=" + name + ", sex=" + sex + ", weight=" + weight
				+ "]";
	}
}


第二步就是配置一个只有spring的环境:
添加spring的jar包和数据库的驱动包这个就不说了。主要是配置spring.xml和读取数据库连接参数database.properties属性文件。


database.properties属性文件:
#MySql数据库连接参数配置
driver=com.mysql.jdbc.Driver
url=jdbc:mysql://127.0.0.1:3306/testibatis
username=root
password=111111


spring.xml配置文件:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop" 
       xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-2.5.xsd
		http://www.springframework.org/schema/aop
		http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
	    http://www.springframework.org/schema/tx
	    http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
	
	    <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
	        <property name="locations">
	            <value>classpath:database.properties</value>
	        </property>
	    </bean>
  		<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
  			<property name="driverClassName" value="${driver}"/>
  			<property name="url" value="${url}"/>
  			<property name="username" value="${username}"/>
  			<property name="password" value="${password}"/>
  		</bean>
     	<!-- 
     	<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
     		<property name="dataSource" ref="dataSource"/>
     	</bean>
     	-->
     	<bean id="peopleDaoImpl" class="com.ego.springjdbc.dao.impl.PeopleDaoImpl">
     		<property name="dataSource" ref="dataSource"/>
     	</bean>
</beans>



第三步(最要的一步):写底层的Dao,我这里是引用了接口的,我直接将实现类代码贴上,接口的就不贴了,相信大家都懂得,实现类里面的方法和接口是一样的。

实现类PeopleDaoImpl.java:

package com.ego.springjdbc.dao.impl;

import java.io.Serializable;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.List;
import java.util.Map;

import org.springframework.jdbc.core.BatchPreparedStatementSetter;
import org.springframework.jdbc.core.RowMapper;
import org.springframework.jdbc.core.support.JdbcDaoSupport;

import com.ego.springjdbc.dao.PeopleDao;
import com.ego.springjdbc.vo.People;

public class PeopleDaoImpl extends JdbcDaoSupport implements PeopleDao {

	public int[] batchUpdate(final List<People> pList) {
		
		return this.getJdbcTemplate().batchUpdate("update t_people set weight=? where id=?",
				new BatchPreparedStatementSetter() {
					public void setValues(PreparedStatement ps, int i) throws SQLException {
						ps.setDouble(1,pList.get(i).getWeight());
						ps.setInt(2, pList.get(i).getId());
					}
					public int getBatchSize() {
						return pList.size();
					}
				});
	}


	/**
	 * 删除记录
	 */
	public void doDeleteObj(int id) {
		System.out.println("id"+id);
		this.getJdbcTemplate().update("delete from t_people where id=?",new Object[]{id});
	}

	/**
	 * 保存对象到数据库
	 */
	public void doSaveObj(People p) {
		this.getJdbcTemplate().update("insert into t_people(name,birthDay,sex,weight,height) values(?,?,?,?,?)",
				new Object[]{p.getName(),p.getBirthDay(),p.getSex(),p.getWeight(),p.getHeight()},
				new int[]{java.sql.Types.VARCHAR,java.sql.Types.TIMESTAMP,java.sql.Types.BOOLEAN,
				java.sql.Types.DOUBLE,java.sql.Types.FLOAT});
	}

	/**
	 * 更新数据
	 */
	public void doUpdateObj(People p) {
		this.getJdbcTemplate().update("update t_people set weight=?,height=? where id=?",
										new Object[]{p.getWeight(),p.getHeight(),p.getId()});
	}

	/**
	 * 获取记录总数
	 */
	public int getCountEntites() {
		return this.getJdbcTemplate().queryForInt("select count(*) from t_people");
	}

	/**
	 * 获取数据集合
	 */
	@SuppressWarnings("unchecked")
	public List<Map<String, Object>> getList() {
		return this.getJdbcTemplate().queryForList("select * from t_people");
	}

	/**
	 * 获取单个对象
	 */
	public Serializable getObjByID(int id) {
		String sql = "select * from t_people where id=?";
		People people = (People)this.getJdbcTemplate().queryForObject(sql,new Object[]{id},new RowMapper(){
			public People mapRow(ResultSet rst, int arg1) throws SQLException {
				People p = new People();
				p.setId(rst.getInt("id"));  
				p.setName(rst.getString("name"));  
				p.setBirthDay(rst.getDate("birthDay"));  
				p.setWeight(rst.getDouble("weight"));  
				p.setHeight(rst.getFloat("height"));  
				p.setSex(rst.getBoolean("sex"));  
				return p;
			}
		});
		return people;
	}

	/**
	 * 通过ID获取符合条件的对象集合
	 */
	
	@SuppressWarnings("unchecked")
	public List<People> getObjsByID(int id) {
		List<People> pList = this.getJdbcTemplate().query("select * from t_people where id > ?",new Object[]{id}, 
				new RowMapper() {
					public People mapRow(ResultSet rst, int rownum) throws SQLException {
						People p = new People();
						p.setId(rst.getInt("id"));  
						p.setName(rst.getString("name"));  
						p.setBirthDay(rst.getDate("birthDay"));  
						p.setWeight(rst.getDouble("weight"));  
						p.setHeight(rst.getFloat("height"));  
						p.setSex(rst.getBoolean("sex"));  
						return p;
					}
				});
		return pList;
	}

	/**
	 * MySql分页查询
	 */
	@SuppressWarnings("unchecked")
	public List<People> getPeopleList(int pageSize, int currentPage) {
		String sql ="select * from t_people limit ?,?";
		List<People> pList = this.getJdbcTemplate().query(sql,new Object[]{(currentPage-1)*pageSize,pageSize},new RowMapper() {
			
			public People mapRow(ResultSet rst, int arg1) throws SQLException {
				People p = new People();
				p.setId(rst.getInt("id"));  
				p.setName(rst.getString("name"));  
				p.setBirthDay(rst.getDate("birthDay"));  
				p.setWeight(rst.getDouble("weight"));  
				p.setHeight(rst.getFloat("height"));  
				p.setSex(rst.getBoolean("sex"));  
				return p;
			}
		});
		return pList;
	}
	

}



第四步:这步就简单了,注意获取底层实现类的方法就行了,必须要先加载spring的配置文件。

测试类PeopleTest.java:

package com.ego.springjdbc.test;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import sun.net.www.content.text.plain;

import com.ego.springjdbc.dao.PeopleDao;
import com.ego.springjdbc.vo.People;

public class PeopleTest {
	
	public static void main(String[] args) {
		PeopleDao peopleDao = null;
		//加载spring的配置文件
		ApplicationContext ac = new ClassPathXmlApplicationContext("spring.xml");	
		
		//获取实现类实例,注意这里不能用PeopleDao peopleDao = new PeopleDaoImpl();
		peopleDao=(PeopleDao)ac.getBean("peopleDaoImpl");
		
		//测试添加操作
//		People people = new People();
//		people.setName("Yao");
//		java.util.Date date = new java.util.Date();
//		Long time = date.getTime();
//		people.setBirthDay(new java.sql.Date(time));
//		people.setSex(true);
//		people.setWeight(58.0);
//		Float height = new Float(158.0);
//		people.setHeight(height);
//		peopleDao.doSaveObj(people);
//		System.out.println("保存成功!");
		
		//测试删除操作
//		peopleDao.doDeleteObj(5);
//		System.out.println("删除成功!");
		
		//测试更新操作
//		People people = new People();
//		people.setId(16);
//		people.setWeight(80.0);
//		Float height = new Float(180.0);
//		people.setHeight(height);
//		peopleDao.doUpdateObj(people);
//		System.out.println("更新成功!");
		
		//测试获取记录总数
//		int n = peopleDao.getCountEntites();
//		System.out.println("记录总数:"+n);
		
		//获取数据集合
		
		
		//通过ID查询单个对象
//		People p = (People)peopleDao.getObjByID(8);
//		System.out.println("people:"+p.toString());
		//通过ID查询对象集合
//		List<People> pList = new ArrayList<People>();
//		pList = peopleDao.getObjsByID(7);
//		for(People p:pList){
//			System.out.println("people:"+p.toString());
//		}
		
		//MySql分页查询
//		List<People> pList = peopleDao.getPeopleList(3, 3);
//		for(People p:pList){
//			System.out.println("people:"+p.toString());
//		}
		
		//测试获取List<Map<String,Object>>
		List<Map<String, Object>> pList = peopleDao.getList();
		//遍历map的几种方法:
		//方法一:
		System.out.println("方法一:");
		for(Map map:pList){
			printMapMethodOne(map);
		}
		
		//方法二:
		System.out.println("方法二:");
		for(Map map:pList){
			printMapMethodTwo(map);
		}
		
		//方法三:
		System.out.println("方法三:");
		for(Map  map:pList){
			printMapMethodThree(map);
		}
		
		//批量修改
		System.out.println("批量修改");
		List<People> pList2 = new ArrayList<People>();
		int id=7;
		for(int i=0;i<6;i++){
			System.out.println("id"+id);
			People people=new People();
			people.setId(id);
			people.setWeight(30.0+i);
			pList2.add(people);
			id++;
		}
		System.out.println("批处理数据:"+peopleDao.batchUpdate(pList2));
	}
	
	/**
	 * 遍历map方法一:
	 * @param map
	 */
	public static void printMapMethodOne(Map map){
		Collection<Object> collection = map.values();
		Collection<Object> collection2 = map.keySet();
		Iterator it = collection.iterator();
		Iterator it2 = collection2.iterator();
		while(it.hasNext()&&it2.hasNext()){
			System.out.println(it2.next()+" --> "+it.next()+" ");
		}
	}
	
	/**
	 * 遍历map方法二:
	 * @param map
	 */
	public static void printMapMethodTwo(Map map){
		Set<String> key = map.keySet();
		Iterator it = key.iterator();
		while(it.hasNext()){
			String s = (String)it.next();
			System.out.println(s+" --> "+map.get(s));
		}
	}
	
	
	/**
	 * 遍历map方法三:
	 * @param map
	 */
	public static void printMapMethodThree(Map map){
		Set<Map.Entry<String,Object>> set = map.entrySet();
		Iterator<Map.Entry<String, Object>> it = set.iterator();
		while(it.hasNext()){
			Map.Entry<String,Object> entry =it.next();
			System.out.println(entry.getKey()+" --> "+entry.getValue());
		}
	}
	
	
	
}




最后还有一点需要注意:我这里建立的项目是WebProject所以还需要配置一个web.xml文件:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" 
	xmlns="http://java.sun.com/xml/ns/javaee" 
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
	http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
  
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
  <context-param>
			<param-name>contextConfigLocation</param-name>
			<param-value>classpath:spring.xml</param-value>
  </context-param>
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>


本篇主体思想是参考文章 http://zhengchao123.iteye.com/blog/1017538请大家尊重原创。
分享到:
评论

相关推荐

    Spring JDBC应用实例讲解

    在本文中,我们将深入探讨Spring JDBC的应用实例,了解如何利用它来实现高效且灵活的数据访问。首先,我们需要理解Spring JDBC是如何通过JdbcTemplate和NamedParameterJdbcTemplate这两个主要工具来封装JDBC操作的。...

    Spring mvc、 Spring、 Spring jdbc 整合实例源码

    Spring MVC、Spring和Spring JDBC是Java开发中非常重要的三大框架,它们构成了Spring框架的核心部分,广泛应用于企业级应用开发。本实例源码旨在提供一个整合这三者的基础模板,帮助开发者理解和掌握它们之间的协同...

    Spring mvc + Spring + Spring jdbc 整合实例源码

    《Spring MVC + Spring + Spring JDBC 整合实例详解》 在Java Web开发中,Spring框架因其强大的功能和灵活的设计而备受推崇。Spring MVC、Spring核心模块以及Spring JDBC是Spring框架中的三大重要组成部分,它们...

    SpringJDBC.rar_SpringJDBC_spring jdbc

    通过这个SpringJDBC.rar的案例,初学者可以学习到如何配置DataSource,如何创建JdbcTemplate实例,以及如何编写和执行SQL语句。同时,实践中还可以了解到如何将Spring JDBC整合到Spring Boot项目中,以及如何处理...

    springjdbc.zip_SpringJDBC_spring jdbc_spring 增删改查_springjdbc xml

    这个`springjdbc.zip`压缩包很可能包含了示例代码和配置文件,用于演示如何使用Spring JDBC来执行基本的数据库操作,如增、删、改、查。 1. **Spring JDBC模块**:Spring JDBC模块主要由`org.springframework.jdbc`...

    spring JDbc

    在本实例中,我们将深入探讨Spring JDBC的使用,并以`SpringJdbcTemplate`为例来阐述其主要功能和优势。 首先,Spring JDBC通过`JdbcTemplate`和`NamedParameterJdbcTemplate`类提供了强大的数据库访问功能。`...

    SpringMVC3 + SpringJDBC整合 源码。

    SpringMVC3与SpringJDBC的整合是Java Web开发中常见的技术组合,它允许...通过学习和实践这个案例,开发者可以深入理解SpringMVC和SpringJDBC的整合应用,以及如何在实际项目中实现CRUD、权限过滤和分页查询功能。

    SpringJDBC.rar_jdbc spring_spring jd_spring jdbc_spring使用JDBC进行数

    这个“SpringJDBC.rar”压缩包文件可能包含了关于如何在Spring框架中集成和使用JDBC的相关示例和教程。下面将详细解释Spring JDBC的核心概念、功能以及使用方法。 首先,Spring JDBC的核心目标是简化传统的JDBC编程...

    Spring mvc + Spring + Spring jdbc 整合 demo

    在本项目中,我们主要探讨的是如何将Spring MVC、Spring框架和Spring JDBC这三大核心组件进行整合,构建一个完整的Java Web应用程序。这个整合Demo旨在帮助开发者理解这些技术的协同工作方式,以及如何在实际开发中...

    spring jdbc 实例源码

    这个项目不仅包含了源代码,还预设了完整的数据库,因此非常适合学习和理解Spring JDBC的实际应用。 在Spring JDBC中,我们主要关注以下几个核心概念: 1. **JdbcTemplate**: 这是Spring JDBC提供的主要类,用于...

    Spring JDBC实现代码

    在Spring 2.5中,我们可以创建一个JdbcTemplate实例并注入DataSource,如下所示: ```java @Autowired private DataSource dataSource; @Bean public JdbcTemplate jdbcTemplate() { return new JdbcTemplate...

    使用Spring JDBC 案例

    在本文中,我们将深入探讨如何使用Spring JDBC进行数据库操作,并结合使用不同的连接池技术,包括Spring自带的、C3P0、DBCP和Druid。此外,我们还将介绍一个自定义的行映射器工具类,它在处理数据库查询结果时能提供...

    Spring+JDBC实例

    当我们谈论"Spring+JDBC实例"时,通常是指在Spring框架中使用JDBC进行数据访问的方式,这种方式可以利用Spring提供的便利性,同时保留对数据库的直接控制。 在Spring框架中,JDBC操作被封装在`org.springframework....

    spring JDBC

    Spring框架提供了一种强大的机制来简化Java应用程序中的数据库访问操作,这一机制即为Spring JDBC模块。通过Spring JDBC,开发者能够更加高效地管理与数据库的交互,减少传统JDBC编程中常见的一些繁琐且易出错的工作...

    Spring+Spring MVC+Spring JDBC+MySql实现简单登录注册

    在本项目中,我们主要利用Spring框架,包括其核心模块Spring、MVC模块Spring MVC以及数据访问/集成模块Spring JDBC,结合MySQL数据库来构建一个基础的登录注册系统。以下是这个项目涉及的关键技术点: 1. **Spring...

    SpringJDBC工程对应Jar包

    使用这些库,开发者可以构建一个健壮且易于维护的Spring JDBC应用,有效地与Oracle数据库进行交互。在实际开发中,我们还需要配置数据源、事务管理器以及JdbcTemplate实例,这些通常在Spring的XML配置文件或者Java...

    java开发之SpringMVC + Spring + SpringJDBC整合.zip

    3. 集成SpringJDBC:配置数据源,创建JdbcTemplate实例,然后在Service层中使用它进行数据库操作。 4. 连接数据库:设置数据库连接参数,如URL、用户名和密码,以及驱动类。 5. 编写Controller:定义处理HTTP请求...

    Spring JDBC相关jar包:spring_jdbc_4.0.0.zip

    在实际应用中,结合Spring的其他模块,如MyBatis-Spring或Hibernate-Spring,可以构建出强大的数据访问层。通过使用`JdbcTemplate`,开发人员可以从繁琐的JDBC代码中解脱出来,专注于业务逻辑,提高开发效率,同时...

    spring jdbc mysql example

    综上所述,"spring jdbc mysql example"这个主题涵盖了从配置数据源、使用JdbcTemplate执行SQL、处理结果集、管理事务到测试数据库操作等一系列关键步骤,这些都是在Java应用中使用Spring JDBC与MySQL数据库交互的...

Global site tag (gtag.js) - Google Analytics