springJDBC 中JdbcTemplate 类方法使用
一,Dao
IUserinfDao
package com.dkt.dao; import java.util.List; import com.dkt.entity.Userinfo; public interface IUserinfDao { public int addUserinfo(Userinfo ui);
// 查询返回的是map集合,一行数据一个map,直接去key为属性
public List<Userinfo> queryUserinfo(Userinfo ui);
public Userinfo queryUser(int i); public String queryUserphone(int id);//查询单个字段
public int deleteUserinfo(int id);
}
UserinfDaoImpl
package com.dkt.dao.impl; import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.List; import org.springframework.jdbc.core.BeanPropertyRowMapper;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.core.RowMapper; import com.dkt.dao.IUserinfDao;
import com.dkt.entity.Userinfo; public class UserinfDaoImpl extends JdbcTemplate implements IUserinfDao{ public int addUserinfo(Userinfo ui) {
int i = super.update("insert into userinfo values(null,?,?,?,?,?)",
new Object[]{ui.getUserphone(),ui.getUserpnike(),ui.getUserpwd(),ui.getUsergreate().intValue(),ui.getUserreagedate()});
return i;
} public List<Userinfo> queryUserinfo(Userinfo ui) {
List<Userinfo> list = super.query("select * from userinfo where userphone='"+ui.getUserphone()+"'",
new BeanPropertyRowMapper<Userinfo>(Userinfo.class));
return list;
} public int deleteUserinfo(int id) {
int delete = super.update("delete from userinfo where userid= ? ", new Object[]{id});
return delete;
} public int updateUserinfo(Userinfo ui) {
int update = super.update("update userinfo set userpnike = ? where userid= ? ", new Object[]{ui.getUserpnike(),ui.getUserid()});
return update;
} public String queryUserphone(int id) {
String i = super.queryForObject("select userphone from userinfo where userid=?", new Object[]{id},String.class);
return i;
} public Userinfo queryUser(int i) {
return super.queryForObject(" select * from userinfo where userid=?",
new Object[]{i},
// new BeanPropertyRowMapper<Userinfo>(Userinfo.class)
// 内部类实现得到对象
new RowMapper<Userinfo>(){
public Userinfo mapRow(ResultSet arg0, int arg1)
throws SQLException {
Userinfo userinfo = new Userinfo(arg0.getString("userphone"),
arg0.getString("userpwd"),
arg0.getTimestamp("userreagedate"));
return userinfo;
}
});
} }
二,entity
package com.dkt.entity; import java.sql.Timestamp; /**
* Userinfo entity. @author MyEclipse Persistence Tools
*/ public class Userinfo implements java.io.Serializable { // Fields private Integer userid;
private String userphone;
private String userpnike;
private String userpwd;
private Integer usergreate;
private Timestamp userreagedate; // Constructors /** default constructor */
public Userinfo() {
} /** minimal constructor */
public Userinfo(String userphone, String userpwd, Timestamp userreagedate) {
this.userphone = userphone;
this.userpwd = userpwd;
this.userreagedate = userreagedate;
} public Userinfo(String userphone, String userpnike, String userpwd,
Timestamp userreagedate) {
super();
this.userphone = userphone;
this.userpnike = userpnike;
this.userpwd = userpwd;
this.userreagedate = userreagedate;
} /** full constructor */
public Userinfo(String userphone, String userpnike, String userpwd,
Integer usergreate, Timestamp userreagedate) {
this.userphone = userphone;
this.userpnike = userpnike;
this.userpwd = userpwd;
this.usergreate = usergreate;
this.userreagedate = userreagedate;
} // Property accessors public Integer getUserid() {
return this.userid;
} public void setUserid(Integer userid) {
this.userid = userid;
} public String getUserphone() {
return this.userphone;
} public void setUserphone(String userphone) {
this.userphone = userphone;
} public String getUserpnike() {
return this.userpnike;
} public void setUserpnike(String userpnike) {
this.userpnike = userpnike;
} public String getUserpwd() {
return this.userpwd;
} public void setUserpwd(String userpwd) {
this.userpwd = userpwd;
} public Integer getUsergreate() {
return this.usergreate;
} public void setUsergreate(Integer usergreate) {
this.usergreate = usergreate;
} public Timestamp getUserreagedate() {
return this.userreagedate;
} public void setUserreagedate(Timestamp userreagedate) {
this.userreagedate = userreagedate;
} }
三,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: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"> <bean id="ds" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName"><value>com.mysql.jdbc.Driver</value> </property>
<property name="username"><value>root</value> </property>
<property name="password"><value>123456</value> </property>
<property name="url"><value>jdbc:mysql://localhost:3306/marry?userUnicode=true&characterEncoding=utf-8</value> </property>
</bean> <bean id="userdao" class="com.dkt.dao.impl.UserinfDaoImpl">
<property name="dataSource" ref="ds"></property>
</bean> </beans>
四,test
package com.dkt.test; import java.sql.Timestamp;
import java.util.Date;
import java.util.List; import org.springframework.beans.factory.BeanFactory;
import org.springframework.context.support.ClassPathXmlApplicationContext; import com.dkt.dao.impl.UserinfDaoImpl;
import com.dkt.entity.Userinfo; public class TsetJDBC { public static void main(String[] args) { BeanFactory bf = new ClassPathXmlApplicationContext("applicationContext.xml");
UserinfDaoImpl udao = (UserinfDaoImpl)bf.getBean("userdao");
/*int i = udao.addUserinfo(new Userinfo("13993723892", "小黑", "qewres",9,new Timestamp(new Date().getTime())));
if (i>0) {
System.out.println("添加成功");
}*/
Userinfo userinfo = new Userinfo();
userinfo.setUserphone("13996932874");
List<Userinfo> user = udao.queryUserinfo(userinfo);
for (Userinfo userinfo2 : user) {
System.out.println(userinfo2.getUserid());
} /*Userinfo user2 = udao.queryUser(10);
System.out.println(user2.getUserphone());*/ /*int i = udao.deleteUserinfo(11);
if (i>0) {
System.out.println("删除成功");
}*/
/*System.out.println(udao.queryUserphone(10)); Userinfo ui = new Userinfo();
ui.setUserid(4);
ui.setUserpnike("咳咳");
int u = udao.updateUserinfo(ui);
if (u>0) {
System.out.println("更新成功");
}*/
}
}
springJDBC 中JdbcTemplate 类方法使用的更多相关文章
- SpringJDBC中jdbcTemplate 的使用
一:定义 SpringJDBC是spring官方提供的一个持久层框架,对JDBC进行了封装,提供了一个JDBCTemplated对象简化JDBC的开发.但Spring本身不是一个orm框架,与hibe ...
- OC基础--OC中的类方法和对象方法
PS:个人感觉跟C#的静态方法和非静态方法有点类似,仅仅是有点类似.明杰老师说过不要总跟之前学过的语言做比较,但是个人觉得,比较一下可以加深印象吧.重点是自己真的能够区分开! 一.OC中的对象方法 1 ...
- Spring 中jdbcTemplate 实现执行多条sql语句
说一下Spring框架中使用jdbcTemplate实现多条sql语句的执行: 很多情况下我们需要处理一件事情的时候需要对多个表执行多个sql语句,比如淘宝下单时,我们确认付款时要对自己银行账户的表里 ...
- python中,类方法和静态方法区别。
面相对象程序设计中,类方法和静态方法是经常用到的两个术语. 逻辑上讲:类方法是只能由类名调用:静态方法可以由类名或对象名进行调用. 在C++中,静态方法与类方法逻辑上是等价的,只有一个概念,不会混淆. ...
- Spring中JdbcTemplate的基础用法
Spring中JdbcTemplate的基础用法 1.在DAO中使用JdbcTemplate 一般都是在DAO类中使用JdbcTimplate,在XML配置文件中配置好后,可以在DAO中注入即可. 在 ...
- 【转】java中Thread类方法介绍
原文: java中Thread类方法介绍 http://blog.csdn.net/seapeak007/article/details/53395609 这篇文章找时间分析一下!!!:http:// ...
- 使用type在对象方法中调用类方法
type简介 type在Python中的作用是创建一个类. 我们创建类的时候一般会使用这样的方法: # -*- coding:utf-8 -*- class Student(object): coun ...
- SpringJDBC的JdbcTemplate在MySQL5.7下不支持子查询的问题
org.springframework.jdbc.BadSqlGrammarException: PreparedStatementCallback; bad SQL grammar [ SELECT ...
- SSM-Spring-19:Spring中JdbcTemplate
------------吾亦无他,唯手熟尔,谦卑若愚,好学若饥------------- Spring自带一个ORM持久化框架JdbcTemplate,他可以说是jdbc的加强版,但是对最细微的控制肯 ...
随机推荐
- CPU的寄存器结构
计算机的硬件有三个基本要素,CPU.内存和I/O.CPU负责解释.执行程序,从内存或I/O输入数据,在内部进行运算,再把运算结果输出到内存或I/O.内存中存放着程序,程序是指令和数据的集合.I/O中临 ...
- 【bug】安卓浏览器键盘输入改变弹出层的定位
bug描述 在安卓浏览器中,有一个在页面底部的弹出层表单,样式如下: .popup { position: absolute; bottom: 0; } 当在这个弹出层输入内容,键盘自动弹出,弹出层的 ...
- javascript 实用工具函数
整理日常开发中我们常常会使用到的一些工具函数. var utils = (function(){ var fay = {}; // 返回当前时间的毫秒数 fay.getTime = Date.now( ...
- D05——C语言基础学PYTHON
C语言基础学习PYTHON——基础学习D05 20180815内容纲要: 1 模块 2 包 3 import的本质 4 内置模块详解 (1)time&datetime (2)datetime ...
- Python小白学习之路(二十)—【打开文件的模式二】【文件的其他操作】
打开文件的模式(二) 对于非文本文件,我们只能使用b模式,"b"表示以字节的方式操作(而所有文件也都是以字节的形式存储的,使用这种模式无需考虑文本文件的字符编码.图片文件的jgp格 ...
- Linux开发端口的基本操作命令
Linux端口操作命令 查看开放端口:firewall-cmd --list-all 开发8080端口 --permanent 代码永久开发:firewall-cmd --add-port=8080/ ...
- lintcode-->哈希函数
在数据结构中,哈希函数是用来将一个字符串(或任何其他类型)转化为小于哈希表大小且大于等于零的整数.一个好的哈希函数可以尽可能少地产生冲突.一种广泛使用的哈希函数算法是使用数值33,假设任何字符串都是基 ...
- filebeat+ELK日志系统
架构图 filebat logstash elasticsearch 基于elasticsearch6.3.2 elasticsearch(一) 之 elasticsearch初识 elasticse ...
- springboot-19-整合dubbox
springboot 整合dubbox 1, 没了,,, 2, 安装zookeeper 可见: http://www.cnblogs.com/wenbronk/p/6636926.html 2.1 下 ...
- sql典例分析
1. 条件过滤 & Having 表结构 #tab_a #tab_b 表关系 tab_a.id = tab_b.relation_id 表数据 需求 查新把tab_a的ID对应的表tab_b的 ...