一、创建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 Temp findById(int id);
}
2)接口实现类设计
实现类名称:TempDaoImpl.java
实现类内容:
public class TempDaoImpl extends JdbcDaoSupport implements ITempDao {
@Override
public Temp findById(int id) {
Temp temp = this.getJdbcTemplate().queryForObject("select * from temp where tid = ?", new RowMapper<Temp>(){
@Override
public Temp mapRow(ResultSet rs, int arg1) throws SQLException {
Temp temp = new Temp();
temp.setTempId(rs.getInt("tid"));
temp.setTempName(rs.getString("tname"));
return temp;
}
},id);
return temp;
}
}
六、在核心配置文件中配置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根据id查询
*/
@Test
public void testJdbcTemplateFindById(){
ApplicationContext context = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");
ITempDao tempDao = (ITempDao) context.getBean("tempdao");
Temp temp = tempDao.findById(3);
System.out.println(temp.getTempId()+"------->"+temp.getTempName());
}
}
spring-使用JdbcTemplate实现根据id进行查询
时间: 2024-10-07 00:02:49
spring-使用JdbcTemplate实现根据id进行查询的相关文章
spring之jdbcTemplate实例
如果我们不使用spring或使用spring但不使用spring的jdbcTemplate模板的时候我们要取得一个数据库的连接以及关闭要经过如下几步: 1.使用Java反射加载驱动 2.通过DriverManager 的getConnection() 方法获取Connection对象 3.获取Statement 或PrepareStatement 4. 调用Statement 或PrepareStatement的方法进行数据ddl dcl dml 操作 5.获取结果 6.释放资源 7
Spring之JDBCTemplate学习
一.Spring对不同的持久化支持: Spring为各种支持的持久化技术,都提供了简单操作的模板和回调 ORM持久化技术 模板类 JDBC org.springframework.jdbc.core.JdbcTemplate Hibernate5.0 org.springframework.orm.hibernate5.HibernateTemplate IBatis(MyBatis) org.springframework.orm.ibatis.SqlMapClientTemplate JPA
Spring中jdbcTemplate的用法实例
一.首先配置JdbcTemplate: 要使用Jdbctemplate 对象来完成jdbc 操作.通常情况下,有三种种方式得到JdbcTemplate 对象. 第一种方式:我们可以在自己定义的DAO 实现类中注入一个DataSource 引用来完 成JdbcTemplate 的实例化.也就是它是从外部"注入" DataSource 到DAO 中,然后 自己实例化JdbcTemplate,然后将DataSource 设置到JdbcTemplate 对象中. 第二种
spring学习(四)spring的jdbcTemplate(增删改查封装)
Spring的jdbcTemplate操作 1.Spring框架一站式框架 (1)针对javaee三层,每一层都有解决技术 (2)到dao 层,使用 jdbcTemplate 2.Spring对不同的持久化都进行了封装 (1)jdbcTemplate 对 jdbc 进行封装 3.jdbcTemplate 使用和 dbutils 使用很相似,都是对数据库进行 crud 操作 4.使用jdbcTemplate 实现增删改查操作 增加: 1.导入 jdbcTemplate 相关jar 包 一定要导
Spring的JdbcTemplate(10)
JdbcTemplate模板与DbUtils工具类比较类似. Spring对持久层技术支持 JDBC : org.springframework.jdbc.core.JdbcTemplate Hibernate3.0 : org.springframework.orm.hibernate3.HibernateTemplate IBatis(MyBatis) : org.springframework.orm.ibatis.SqlMapClientTemplate JPA : org.spring
SpringBoot中使用Spring Data Jpa 实现简单的动态查询的两种方法
首先谢谢大佬的简书文章:http://www.jianshu.com/p/45ad65690e33# 这篇文章中讲的是spring中使用spring data jpa,使用了xml配置文件.我现在使用的是spring boot ,没有了xml文件配置就方便多了.我同样尝试了两种方式,也都是简单的查询,需要更复杂的查询,还需要我研究研究.往下看,需要先配置springboot的开发环境,需要大致了解springboot,这里可以看下面两篇文章: springboot 项目新建 springboot
Spring MVC +MyBatis +MySQL 简单的登录查询 Demo 解决了mybatis异常
忙活了大半天,饭也没顾得上吃,哎许久不动手,一动手就出事,下面请看今天的重头戏,额吃个饭回来再发了! 1.整体结构 2.准备工作 数据库: --Mysql 5.6 创建数据库 wolf CREATE DATABASE wolf; 创建用户表 user create table user( id int AUTO_INCREMENT primary key, name varchar(25) not null, pwd varchar(20) not null, create_time dat
spring使用jdbcTemplate和jdbcdaosupport和namedparameter
jdbcTemplate: 首先连接数据库 <!-- 导入外部文件 --> <context:property-placeholder location="classpath:db.properties"/> <!-- 配置c3p0数据源 --> <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"> <
使用Spring的JdbcTemplate访问数据库 转
使用Spring的JdbcTemplate访问数据库 JdbcTemplate 模板可以简化JDBC操作,但是创建一个JdbcTemplate需要一个DataSource接口,在Spring中,当然就是向 JdbcTemplate中注入一个DataSource,然后通过JdbcTemplate来获取一个连接(Connection). 假设SQL Server 2000数据库(新建的数据库名称为hibernate)中有一张person表,简单地记录了人员的详细信息. 使用Spring的IOC机制实