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的加强版,但是对最细微的控制肯 ...
随机推荐
- MySQL(ORM框架)
day63 参考:http://www.cnblogs.com/wupeiqi/articles/5713330.html SQLAlchemy本身无法操作数据库,其必须以来pymsql等第三方插件, ...
- 如何实现session跨服务器共享
Session共享有多种解决方法,常用的有四种:客户端Cookie保存.服务器间Session同步.使用集群管理Session.把Session持久化到数据库. 1.客户端Cookie保存 以cook ...
- about BFC
https://www.cnblogs.com/lhb25/p/inside-block-formatting-ontext.html Box.Formatting Context(BFC)
- (5)Oracle基础--约束
· 约束的作用 <1> 定义规则 <2> 确保数据的完整性 · 约束 <1> 非空约束 ① 创建表时为字段添加非空约束 CREATE TABLE table_nam ...
- Flask从入门到精通之大型程序的结构二
一.程序包 程序包用来保存程序的所有代码.模板和静态文件.我们可以把这个包直接称为app(应用),如果有需求,也可使用一个程序专用名字.templates 和static 文件夹是程序包的一部分,因此 ...
- [Swift实际操作]七、常见概念-(11)路径URL的使用详解
本文将为你演示网址对象(URL)的使用 首先导入需要使用的界面工具框架 import UIKit 接着初始化一个指定网址的网址对象 let url = URL(string: "https: ...
- 使用request.js代理post失败的问题
前面写过一篇使用request.js做代理的文章,可能眼睛敏锐的朋友已经看出在代理POST方法时和代理其它请求方式是有区别的, 现在我来说一下为什么要这么处理. 相信很多人都采用这种方式去代理POST ...
- Oracle性能问题sql调优脚本集
---------------------------------------------------------------------------------------------------- ...
- 导入不用的css文件及在不同设备显示不用的html页面
当一个页面对应有多个css样式文件时,我们可以根据地址栏的参数值而导入不同的css文件: function getCss() { var linkNode = document.createEleme ...
- UIDevice currentDevice model possible values
NOTE: The below code may not contain all device's string, I'm with other guys are maintaining the sa ...