com.tao.pojo实体类

package com.tao.pojo;

public class User {
private int id;
private String name;
private String password; public User() {
super();
}
public User(int id, String name, String password) {
super();
this.id = id;
this.name = name;
this.password = password;
}
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 String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
@Override
public String toString() {
return "User [id=" + id + ", name=" + name + ", password=" + password + "]";
} } User.hbm.xml映射文件 <?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> <hibernate-mapping package="org.hibernate.test.schemaupdate"> <class name="com.tao.pojo.User" table="user">
<id name="id">
<generator class="identity"></generator>
</id>
<property name="name"/>
<property name="password" column="pass"/>
</class> </hibernate-mapping> 配置文件hibernate.cfg.xml <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.password">root</property>
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/test0102?characterEncoding=utf-8</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="show_sql">true</property>
<property name="format_sql">true</property> <!-- 因为加载的时候只加载配置文件,没有加载映射文件,让它去找 -->
<mapping resource="com/tao/pojo/User.hbm.xml"/>
</session-factory>
</hibernate-configuration> DAO方法
com.tao.dao package com.tao.dao; import java.util.List; public interface BaseDAO<T> {
// 通用的功能
public List<T> findAll(); public T findById(int id); public void deleteById(int id); public boolean update(T t); public boolean save(T t); } package com.tao.dao; import com.tao.pojo.User; public interface UserDAO extends BaseDAO<User> { public User login(String name,String password); } 实现类 com.tao.dao.Impl package com.tao.dao.Impl; import java.io.Serializable;
import java.util.List; import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
import org.hibernate.query.Query; import com.tao.dao.UserDAO;
import com.tao.pojo.User; public class UserDAOImpl implements UserDAO{ @Override
public List<User> findAll() {
// TODO Auto-generated method stub
Configuration configure = new Configuration().configure();
SessionFactory factory = configure.buildSessionFactory();
Session session = factory.openSession();
session.beginTransaction();
Query<User> query = session.createQuery("from User", User.class);
List<User> list = query.list(); session.getTransaction().commit();
session.close();
factory.close(); return list;
} @Override
public User findById(int id) {
// TODO Auto-generated method stub
Configuration configure = new Configuration().configure();
SessionFactory factory = configure.buildSessionFactory();
Session session = factory.openSession();
session.beginTransaction();
Query<User> query = session.createQuery("from User where id=?", User.class);
query.setParameter(0, id);
User user = query.uniqueResult(); session.getTransaction().commit();
session.close();
factory.close(); return user;
} @Override
public void deleteById(int id) {
// TODO Auto-generated method stub
Configuration configure = new Configuration().configure();
SessionFactory factory = configure.buildSessionFactory();
Session session = factory.openSession();
session.beginTransaction();
//方法1
// User user = session.get(User.class, id);
// session.delete(user);
//放法2
// User user = new User();
// user.setId(id);
// session.delete(user); //方法3
Query query = session.createQuery("delete from User where id=?");
query.setParameter(0, id);
int rows = query.executeUpdate();
System.out.println(rows+"=============rows");
session.getTransaction().commit();
session.close();
factory.close(); } @Override
public boolean update(User t) {
// TODO Auto-generated method stub
Configuration configure = new Configuration().configure();
SessionFactory factory = configure.buildSessionFactory();
Session session = factory.openSession();
session.beginTransaction();
//update()只根据Id更新
// session.update(t); //HQL语句(User是类名,name,password是类里面的属性名)
Query query = session.createQuery("update User set name=?,password=? where id=?");
query.setParameter(0, t.getName());
query.setParameter(1, t.getPassword());
query.setParameter(2, t.getId());
int rows = query.executeUpdate(); session.getTransaction().commit();
session.close();
factory.close();
if(rows>0) {
return true;
}
return false;
} @Override
public boolean save(User t) {
// TODO Auto-generated method stub
Configuration configure = new Configuration().configure();
SessionFactory factory = configure.buildSessionFactory();
Session session = factory.openSession();
session.beginTransaction();
Integer id = (Integer) session.save(t); session.getTransaction().commit();
session.close();
factory.close();
if(id>0) {
return true;
}
return false;
} @Override
public User login(String name, String password) {
// TODO Auto-generated method stub
Configuration configure = new Configuration().configure();
SessionFactory factory = configure.buildSessionFactory();
Session session = factory.openSession();
session.beginTransaction();
Query<User> query = session.createQuery("from User where name=? and password=?",User.class);
query.setParameter(0, name).setParameter(1, password);
User user = query.uniqueResult(); session.getTransaction().commit();
session.close();
factory.close();
return user;
} }
JUnit测试 package com.tao.test; import static org.junit.Assert.*; import java.util.List; import org.junit.Test; import com.tao.dao.Impl.UserDAOImpl;
import com.tao.pojo.User; public class JUnit_User { UserDAOImpl impl = new UserDAOImpl();
@Test
public void testAll() {
List<User> list = impl.findAll();
for (User uu : list) {
System.out.println(uu);
} }
@Test
public void testById() { User user = impl.findById(2);
System.out.println(user);
} @Test
public void testdeleteById() {
System.out.println("delete++++++++++++++++++");
impl.deleteById(10); } @Test
public void save() {
User user = new User(12, "ss", "ss");
boolean b = impl.save(user);
System.out.println(b);
} @Test
public void update() {
User user = new User(2, "ss", "222");
impl.update(user);
} //登录
@Test
public void login() {
User user = impl.login("ss", "222");
System.out.println(user);
} }

Hibernate 操作数据库的更多相关文章

  1. hibernate操作数据库总结

    这篇文章用于总结hibernate操作数据库的各种方法 一.query方式 1.hibernate使用原生态的sql语句执行数据库查询 有些时候有些开发人员总觉得用hql语句不踏实,程序出现了错误,就 ...

  2. Java_Web三大框架之Hibernate操作数据库(三)

    使用Hibernate操作数据库需要七个步骤: (1)读取并解析配置文件 Configuration conf = newConfiguration().configure(); (2)读取并解析映射 ...

  3. hibernate操作数据库例子

    1.工程目录结构如下 2.引入需要的jar包,如上图. 3.创建持久化类User对应数据库中的user表 package com.hibernate.配置文件.pojo; import java.sq ...

  4. hibernate操作数据库总结(转)

    一.query方式 1.hibernate使用原生态的sql语句执行数据库查询 有些时候有些开发人员总觉得用hql语句不踏实,程序出现了错误,就猜测因为不是原生态的sql语句,数据库不支持,因此情愿选 ...

  5. Hibernate操作数据库的回调机制--Callback

     1:一般情况下,在使用Hibernate Session存取数据库的代码中,基本上大部分是相同的,如下两个方法所示, //查询Teacher操作 ublic Teacher getTeacher ...

  6. 转 使用Hibernate操作数据库时报:No CurrentSessionContext configured! 异常

    没有currentSession配置错误,即在我们使用currentSession的时候要在hibernate.cfg.xml中进行相关的事务配置:1.本地事务<property name=&q ...

  7. hibernate操作数据库时报错解决方式

    java.sql.SQLException: Parameter index out of range (28 > number of parameters, which is 27). 这个说 ...

  8. Spring MVC基础知识整理➣Spring+SpringMVC+Hibernate整合操作数据库

    概述 Hibernate是一款优秀的ORM框架,能够连接并操作数据库,包括保存和修改数据.Spring MVC是Java的web框架,能够将Hibernate集成进去,完成数据的CRUD.Hibern ...

  9. 5 -- Hibernate的基本用法 --2 2 Hibernate的数据库操作

    在所有的ORM框架中有一个非常重要的媒介 : PO(持久化对象:Persistent Object).持久化对象的作用是完成持久化操作,简单地说,通过该对象可对数据执行增.删.改的操作 ------ ...

随机推荐

  1. .net framework 4 线程安全概述

    线程安全:如果你的代码所在的进程中有多个线程在同时运行,而这些线程可能会同时运行这段代码.如果每次运行结果和单线程运行的结果是一样的,而且其他的变量的值也和预期的是一样的,就是线程安全的.早期的时候, ...

  2. package.json字段全解

    原文:http://blog.csdn.net/woxueliuyun/article/details/39294375 Name 必须字段. 小提示: 不要在name中包含js, node字样: 这 ...

  3. RocketMQ源码 — 六、 RocketMQ高可用(1)

    高可用究竟指的是什么?请参考:关于高可用的系统 RocketMQ做了以下的事情来保证系统的高可用 多master部署,防止单点故障 消息冗余(主从结构),防止消息丢失 故障恢复(本篇暂不讨论) 那么问 ...

  4. 【深度学习】目标检测算法总结(R-CNN、Fast R-CNN、Faster R-CNN、FPN、YOLO、SSD、RetinaNet)

    目标检测是很多计算机视觉任务的基础,不论我们需要实现图像与文字的交互还是需要识别精细类别,它都提供了可靠的信息.本文对目标检测进行了整体回顾,第一部分从RCNN开始介绍基于候选区域的目标检测器,包括F ...

  5. ORACLE数据库维护

    ORACLE数据库维护(转)----一篇关于oracle的不错的文章 1. ORACLE数据库启动与关闭   1.1 打开和关闭数据库 (手工)1.1.1 sqlplus连接   1.1.2 打开数据 ...

  6. Emit方式调用方法

    object objRet = Delegate.CreateDelegate(typeof(Func<Guid, int, decimal>), inst, "HelloWor ...

  7. Mybatis 系列9

    上篇系列8中 简单介绍了mybatis的查询,至此,CRUD都已讲完. 本文将介绍mybatis强大的动态SQL. 那么,问题来了: 什么是动态SQL? 动态SQL有什么作用? 传统的使用JDBC的方 ...

  8. (译)WebRTC实战: STUN, TURN, Signaling

    http://xiaol.me/2014/08/24/webrtc-stun-turn-signaling/ 原文:WebRTC in the real world: STUN, TURN and s ...

  9. Ocelot中文文档-缓存

    目前Ocelot使用CacheManager项目提供了一些非常基本的缓存.这是一个了不起的项目,它解决了很多缓存问题. 我会推荐这个软件包来做Ocelot缓存. 如果你看看这里的例子,你可以看到如何设 ...

  10. python笔记:#008#变量的命名

    变量的命名 目标 标识符和关键字 变量的命名规则 0.1 标识符和关键字 1.1 标识符 标示符就是程序员定义的 变量名.函数名 名字 需要有 见名知义 的效果,见下图: 标示符可以由 字母.下划线 ...