spring-使用JdbcTemplate完成查询所有记录-ResultSetExtractor

简介:
一、创建spring项目
    项目名称:spring101306
二、在项目上添加jar包
    1.在项目中创建lib目录
        /lib
    2.在lib目录下添加spring支持
        commons-logging.jar
        junit-4.10.jar
        log4j.jar
        mysql-connector-java-5.1.18-bin.jar
        spring-beans-3.2.0.RELEASE.jar
        spring-context-3.2.0.RELEASE.jar
        spring-core-3.2.0.RELEASE.jar
        spring-expression-3.2.0.RELEASE.jar
        spring-jdbc-3.2.0.RELEASE.jar
        spring-tx-3.2.0.RELEASE.jar
        com.springsource.com.mchange.v2.c3p0-0.9.1.2.jar
三、在项目中添加配置文件与属性文件
    1.在项目中创建conf目录
    2.在conf目录下添加属性文件
        属性文件名称:jdbc.properties
        属性文件内容:
        jdbc.url=jdbc:mysql://localhost:3306/spring
        jdbc.driver=com.mysql.jdbc.Driver
        jdbc.username=root
        jdbc.password=root
    2.在conf目录下添加spring核心配置文件
        配置文件名称:applicationContext.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"
                       xsi:schemaLocation="
                http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
                http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
                
                <!-- 加载属性文件 -->
                <context:property-placeholder location="classpath:jdbc.properties"/>
                
                <!-- 1.配置数据库连接池 -->
                <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
                    <property name="jdbcUrl" value="${jdbc.url}"></property>
                    <property name="driverClass" value="${jdbc.driver}"></property>
                    <property name="user" value="${jdbc.username}"></property>
                    <property name="password" value="${jdbc.password}"></property>
                </bean>
        </beans>
四、实现bean设计
    1.在src目录下创建实体bean的包
        包名:cn.jbit.spring101306.domain
    2.在包下创建实体bean
        public class Temp {
            private Integer tempId;
            private String tempName;
            //省略get and set
        }
五、设计Dao层
    1.在src目录下创建dao层的包
        包名:cn.jbit.spring101306.dao
    2.在包下创建dao层的接口与实现类
        1)接口设计
            接口名称:ITempDao.java
            接口内容:
            public interface ITempDao {
                public List<Temp> findAll1();
            }
        2)接口实现类设计
            实现类名称:TempDaoImpl.java
            实现类内容:
            public class TempDaoImpl extends JdbcDaoSupport implements ITempDao {
                @Override
                public List<Temp> findAll1() {
                    List<Temp> temps = this.getJdbcTemplate().query("select * from temp", new ResultSetExtractor<List<Temp>>(){
            
                        @Override
                        public List<Temp> extractData(ResultSet rs) throws SQLException,
                                DataAccessException {
                            List<Temp> temps = new ArrayList<Temp>();
                            while(rs.next()){
                                int tid = rs.getInt("tid");
                                String tname= rs.getString("tname");
                                Temp temp = new Temp();
                                temp.setTempId(tid);
                                temp.setTempName(tname);
                                temps.add(temp);
                            }
                            return temps;
                        }
                        
                    });
                    return temps;
                }
            }
六、在核心配置文件中配置Dao
    <!-- 配置Dao -->
    <bean id="tempdao" class="cn.jbit.spring101306.dao.TempDaoImpl">
        <!-- 为jdbcTemplate进行注入 -->
        <property name="dataSource" ref="dataSource"></property>    
    </bean>
七、测试
    1.在项目上创建test目录
        /test
    2.在test目录下创建测试包
        包名:cn.jbit.spring101301.dao
    3.在测试包下创建测试类
        测试类名:JdbcTemplateDemo.java
        测试类的内容:
        public class JdbcTemplateDemo {
        
            /**
             * 使用spring jdbctemplate查询所有
             */
            @Test
            public void testJdbcTemplateFindAllByResultSetExtractor(){
                ApplicationContext context = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");
                ITempDao tempDao = (ITempDao) context.getBean("tempdao");
                List<Temp> temps = tempDao.findAll1();
                for (Temp temp : temps) {
                    System.out.println(temp.getTempId()+"------->"+temp.getTempName());
                }
            }

        }

本文转自  素颜猪  51CTO博客,原文链接:http://blog.51cto.com/suyanzhu/1563391

相关文章
|
2月前
|
Java Spring
使用JDBCTemplate实现与Spring结合,方法公用 ——测试(EmpDaoImplTest)
使用JDBCTemplate实现与Spring结合,方法公用 ——测试(EmpDaoImplTest)
9 0
|
1月前
|
SQL Java 数据库连接
jpa、hibernate、spring-data-jpa、jdbcTemplate
jpa、hibernate、spring-data-jpa、jdbcTemplate
|
2月前
|
Java Spring
使用JDBCTemplate实现与Spring结合,方法公用 ——Emp实现类(EmpDaoImpl)
使用JDBCTemplate实现与Spring结合,方法公用 ——Emp实现类(EmpDaoImpl)
8 0
|
2月前
|
Java Spring
使用JDBCTemplate实现与Spring结合,方法公用 ——共用实现类(BaseImpl)
使用JDBCTemplate实现与Spring结合,方法公用 ——共用实现类(BaseImpl)
10 1
|
2月前
|
Java Spring
使用JDBCTemplate实现与Spring结合,方法公用 ——接口(BaseDao)
使用JDBCTemplate实现与Spring结合,方法公用 ——接口(BaseDao)
9 0
|
2月前
|
Java Spring
使用JDBCTemplate实现与Spring结合,方法公用
使用JDBCTemplate实现与Spring结合,方法公用
8 0
|
2月前
|
前端开发 Java Spring
Java 新手如何使用Spring MVC 中的查询字符串和查询参数
Java 新手如何使用Spring MVC 中的查询字符串和查询参数
|
4月前
|
SQL Java 数据库连接
Spring 模板技术JdbcTemplate
Spring 模板技术JdbcTemplate
32 0
Spring 模板技术JdbcTemplate
|
2月前
|
Java 应用服务中间件 Maven
SpringBoot 项目瘦身指南
SpringBoot 项目瘦身指南
53 0
|
2月前
|
缓存 安全 Java
Spring Boot 面试题及答案整理,最新面试题
Spring Boot 面试题及答案整理,最新面试题
137 0