hibernate.cfg.xml
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<!-- Generated by MyEclipse Hibernate Tools. -->
<hibernate-configuration>
<session-factory>
<property name="hbm2ddl.auto">update</property>
<property name="dialect">org.hibernate.dialect.DB2Dialect</property>
<property name="connection.url">jdbc:db2://192.168.25.230:50000/JSAMPLE</property>
<property name="connection.username">zyl</property>
<property name="connection.password">123</property>
<property name="connection.driver_class">com.ibm.db2.jcc.DB2Driver</property>
<property name="myeclipse.connection.profile">zyl</property>
<mapping resource="com/zyl/po/UsersPO.hbm.xml" />
</session-factory>
</hibernate-configuration>
-------------------------------------------------------------------------------------------
UsersPO.java
package com.zyl.po;
import java.io.Serializable;
import java.util.Date;
public class UsersPO implements Serializable{
/**
*
*/
private Long usersID;
private String username;
private String userpassword;
private Date regDate;
public Long getUsersID() {
return usersID;
}
public void setUsersID(Long usersID) {
this.usersID = usersID;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getUserpassword() {
return userpassword;
}
public void setUserpassword(String userpassword) {
this.userpassword = userpassword;
}
public Date getRegDate() {
return regDate;
}
public void setRegDate(Date regDate) {
this.regDate = regDate;
}
public UsersPO(String username, String userpassword, Date regDate) {
super();
this.username = username;
this.userpassword = userpassword;
this.regDate = regDate;
}
}
-------------------------------------------------------------------------------------------
UsersPO.hbm.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="com.zyl.po" schema="zyl">
<class name="UsersPO" table="zylUsers">
<id column="usersID" name="usersID" type="long">
<generator class="sequence">
<param name="sequence">users_seq</param>
</generator>
</id>
<property name="username" type="string"/>
<property name="userpassword" type="string"/>
<property name="regDate" type="date"/>
</class>
<database-object>
<create><![CDATA[create sequence users_seq start with 1]]></create>
<drop></drop>
<dialect-scope name="org.hibernate.dialect.DB2Dialect"/>
</database-object>
</hibernate-mapping>
-------------------------------------------------------------------------------------------
UsersDAO.java
package com.zyl.dao;
import java.util.List;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.Transaction;
import com.zyl.factory.HibernateSessionFactory;
import com.zyl.po.UsersPO;
public class UsersDAO {
public void saveUser(UsersPO usersPO){
Session session = HibernateSessionFactory.getSession();
Transaction trans = session.beginTransaction();
session.save(usersPO);
trans.commit();
session.close();
}
public UsersPO findUsersById(Long id){
Session session = HibernateSessionFactory.getSession();
Transaction trans = session.beginTransaction();
UsersPO usersPO =(UsersPO)session.load(com.zyl.po.UsersPO.class, id);
trans.commit();
session.close();
return usersPO;
}
public List<UsersPO> findAllUsersPO(){
Session session = HibernateSessionFactory.getSession();
Transaction trans = session.beginTransaction();
Query query = session.createQuery("select u from UsersPO u order by u.usersID desc");
List<UsersPO> usersList = query.list();
trans.commit();
session.close();
return usersList;
}
public void updateUsersPO(UsersPO usersPO){
Session session = HibernateSessionFactory.getSession();
Transaction trans = session.beginTransaction();
session.update(usersPO);
trans.commit();
session.close();
}
public void deleteUsersPO(UsersPO usersPO){
Session session = HibernateSessionFactory.getSession();
Transaction trans = session.beginTransaction();
session.delete(usersPO);
trans.commit();
session.close();
}
}
-------------------------------------------------------------------------------------------
package com.ascent.dao.test;
import java.util.List;
import junit.framework.Assert;
import org.junit.Test;
import com.ascent.dao.UsersDAO;
import com.ascent.po.UsersPO;
public class UsersDAOTestCase {
///@Test
public void testSaveUsers() {
UsersPO usersPO = new UsersPO("zyl","123",new java.util.Date());
UsersDAO usersDAO = new UsersDAO();
usersDAO.saveUsers(usersPO);
Assert.assertNotNull("插入失败",usersPO.getUsersID());
System.out.println(usersPO.getUsersID());
}
//@Test
public void testFindUsersPOById(){
UsersDAO usersDAO = new UsersDAO();
UsersPO usersPO = usersDAO.findUsersById(2L);
Assert.assertNotNull("查询失败",usersPO);
System.out.println(usersPO.toString());
}
//@Test
public void testFindAllUsersPO(){
UsersDAO usersDAO = new UsersDAO();
List<UsersPO> usersList = usersDAO.findAllUsersPO();
Assert.assertNotNull(usersList);
for (UsersPO usersPO : usersList) {
System.out.println(usersPO);
}
}
///@Test
public void testUpdateUsersPO(){
UsersDAO usersDAO = new UsersDAO();
UsersPO usersPO = usersDAO.findUsersById(2L);
Assert.assertNotNull("查询失败",usersPO);
usersPO.setUsersName("xyf");
usersDAO.updateUsersPO(usersPO);
}
@Test
public void testDeleteUsersPO(){
UsersDAO usersDAO = new UsersDAO();
UsersPO usersPO = usersDAO.findUsersById(1L);
Assert.assertNotNull("查询失败",usersPO);
// usersPO.setUsersName("ddd");
usersDAO.deleteUsersPO(usersPO);
}
}-------------------------------------------------------------------------------------------
HibernateSessionFactory.java
package com.zyl.hiber.SessionFactory;
import org.hibernate.HibernateException;
import org.hibernate.Session;
import org.hibernate.cfg.Configuration;
/**
* Configures and provides access to Hibernate sessions, tied to the
* current thread of execution. Follows the Thread Local Session
* pattern, see {@link http://hibernate.org/42.html }.
*/
public class HibernateSessionFactory {
/**
* Location of hibernate.cfg.xml file.
* Location should be on the classpath as Hibernate uses
* #resourceAsStream style lookup for its configuration file.
* The default classpath location of the hibernate config file is
* in the default package. Use #setConfigFile() to update
* the location of the configuration file for the current session.
*/
private static String CONFIG_FILE_LOCATION = "/hibernate.cfg.xml";
private static final ThreadLocal<Session> threadLocal = new ThreadLocal<Session>();
private static Configuration configuration = new Configuration();
private static org.hibernate.SessionFactory sessionFactory;
private static String configFile = CONFIG_FILE_LOCATION;
static {
try {
configuration.configure(configFile);
sessionFactory = configuration.buildSessionFactory();
} catch (Exception e) {
System.err
.println("%%%% Error Creating SessionFactory %%%%");
e.printStackTrace();
}
}
private HibernateSessionFactory() {
}
/**
* Returns the ThreadLocal Session instance. Lazy initialize
* the <code>SessionFactory</code> if needed.
*
* @return Session
* @throws HibernateException
*/
public static Session getSession() throws HibernateException {
Session session = (Session) threadLocal.get();
if (session == null || !session.isOpen()) {
if (sessionFactory == null) {
rebuildSessionFactory();
}
session = (sessionFactory != null) ? sessionFactory.openSession()
: null;
threadLocal.set(session);
}
return session;
}
/**
* Rebuild hibernate session factory
*
*/
public static void rebuildSessionFactory() {
try {
configuration.configure(configFile);
sessionFactory = configuration.buildSessionFactory();
} catch (Exception e) {
System.err
.println("%%%% Error Creating SessionFactory %%%%");
e.printStackTrace();
}
}
/**
* Close the single hibernate session instance.
*
* @throws HibernateException
*/
public static void closeSession() throws HibernateException {
Session session = (Session) threadLocal.get();
threadLocal.set(null);
if (session != null) {
session.close();
}
}
/**
* return session factory
*
*/
public static org.hibernate.SessionFactory getSessionFactory() {
return sessionFactory;
}
/**
* return session factory
*
* session factory will be rebuilded in the next call
*/
public static void setConfigFile(String configFile) {
HibernateSessionFactory.configFile = configFile;
sessionFactory = null;
}
/**
* return hibernate configuration
*
*/
public static Configuration getConfiguration() {
return configuration;
}
}-------------------------------------------------------------------------------------------
ToDDL.java
package com.zyl.util;
import org.hibernate.cfg.Configuration;
import org.hibernate.tool.hbm2ddl.SchemaExport;
public class ToDDL {
public static void main (String[] args) {
Configuration configure= new Configuration();
configure.configure("hibernate.cfg.xml");
SchemaExport sc=new SchemaExport(configure);
sc.create(true, true);
}
}
-------------------------------------------------------------------------------------------
log4j.properties
log4j.rootLogger=DEBUG,A1
log4j.appender.A1 = org.apache.log4j.ConsoleAppender
log4j.appender.A1.layout=org.apache.log4j.TTCCLayout
-------------------------------------------------------------------------------------------
junit测试
增删改查
hibernate连DB2
Zyl.java和Zyl.hbm.xml是由表ZYL是逆向工程生成的 DB Browser - 表(zyl) 右键 - Java src forder :/hibernateTest/src ,Java package:com.zyl.po - hibernate Reverse Engneering-选Create POJO和java data Object-Hibernate types 和 identity
表zylusers 是正向生成的表里有userid,username,userpassword,regDate
<mapping resource="com/zyl/po/UsersPO.hbm.xml" />
HibernateSessionFactory.java
用myeclipse 自动生成hibernate
点项目名称--右键--MyEclipse--Add Hibernate Capabilities
分享到:
相关推荐
本篇我们将深入探讨如何利用Hibernate创建一张简单的表,以此来理解其核心概念和工作流程。 首先,Hibernate通过映射XML或注解配置将Java类与数据库表关联起来。在创建表的过程中,我们通常会定义一个Java实体类,...
**hibernate简单的入门案例** Hibernate 是一个强大的Java对象关系映射(ORM)框架,它为开发者提供了在Java应用程序中操作数据库的强大工具。这个入门案例将带你了解如何使用Hibernate进行基本的操作,包括配置、...
基于Hibernate的简单留言本是一个基本的Web应用程序,它使用Hibernate作为数据持久化层,用户可以通过该系统进行留言、查看留言以及回复等操作。这个系统展示了如何在实际项目中应用Hibernate来管理数据库交互。 ...
例如,创建一个User类,然后通过Hibernate的Session接口进行CRUD(创建、读取、更新、删除)操作。 在MyEclipse和Eclipse中,配置Hibernate通常包括以下几个步骤: 1. 添加Hibernate库:你需要导入Hibernate的jar...
这个“hibernate_first”压缩包提供了一个适合初学者的简单实例,帮助理解Hibernate的基础用法。以下是关于Hibernate入门的一些关键知识点: 1. **对象关系映射(ORM)**:ORM是将数据库中的表映射为Java类的过程,...
这个“Hibernate简单的demo”是为了帮助初学者理解并快速上手Hibernate框架而设计的。 **核心概念** 1. **实体(Entity)**: 在Hibernate中,实体通常对应数据库中的表,它们是Java类,通过注解或XML配置与数据库...
【标题】"最简单的Hibernate工程"揭示了这个项目的核心是介绍和实现了一个基本的Hibernate框架应用。Hibernate,作为Java领域中的一个流行ORM(对象关系映射)工具,它允许开发者用面向对象的方式来处理数据库,从而...
**一个Hibernate的简单实例** 在Java开发中,Hibernate是一个非常重要的对象关系映射(ORM)框架,它极大地简化了数据库操作。本实例旨在为初学者提供一个基础的Hibernate使用教程,帮助理解其基本概念和工作流程。...
Hibernate通过映射Java类到数据库表,使得数据操作变得更加简单和直观。 4. **Maven**:Maven是一个项目管理和综合工具,主要用于构建、依赖管理和项目信息管理。它通过一个项目对象模型(POM)文件来管理项目的...
在本项目"student+hibernate简单项目(表无关联)"中,主要涉及了三个核心技术:Hibernate、Struts2和MySQL数据库。这是一个适合初学者的实践项目,旨在帮助理解如何将这些技术整合起来,实现数据的CRUD(创建、读取...
【hibernate3 最简单实现项目】 在Java开发中,Hibernate是一个非常重要的对象关系映射(ORM)框架,它极大地简化了数据库操作。本项目基于Hibernate3,将介绍如何实现最简单的查询功能,并且提供了必要的jar包以供...
在本教程中,我们将深入探讨Hibernate的基本概念、配置以及如何在实际项目中进行简单使用。 一、Hibernate概述 Hibernate是一个开源的对象关系映射(ORM)框架,它允许开发人员将Java对象模型与关系型数据库进行...
本项目是一个专门为初学者设计的hibernate简单工程示例,旨在帮助初学者快速理解并掌握Hibernate的基本用法。 **1. Hibernate简介** Hibernate是Java领域的一个对象关系映射(ORM)框架,它通过提供一种对象化的...
接着,创建一个对应的DAO(数据访问对象)接口和实现,利用Hibernate提供的Session API来执行CRUD操作。然后,定义一个服务层接口和服务实现,处理用户的注册和登录逻辑,如验证用户名的唯一性,加密密码等。在...
在本"struts2+hibernate简单例子"中,我们将学习以下关键知识点: 1. **Struts2配置**:首先,我们需要配置Struts2的核心文件`struts.xml`,定义Action类、结果类型以及拦截器栈。这包括设置包、添加Action元素,...
在“hibernate简易网上银行”项目中,我们利用Hibernate技术来构建一个简单但功能完整的网上银行系统。这个系统能够帮助用户进行基本的银行交易操作,如存款、取款、转账等,同时实现数据持久化,确保信息的安全存储...
**Hibernate简易框架实例** 在初学者测试或新项目开发中,使用Hibernate框架搭建基础实例通常包含以下步骤: 1. **环境配置**: 首先,需要在项目中引入Hibernate的依赖库,这通常通过Maven或Gradle完成。同时,...
在Hibernate中,`SessionFactory`是线程安全的,用于创建`Session`实例。`Session`是实际操作数据库的对象,类似于JDBC的Connection。以下是如何创建SessionFactory和Session的基本代码: ```java Configuration ...
以下是对Hibernate简单实例的详细讲解。 1. **Hibernate环境搭建**: 在开始任何操作之前,你需要在项目中引入Hibernate的核心库,包括hibernate-core.jar和其他相关依赖。通常,这些依赖可以通过Maven或Gradle等...
**hibernate 简单测试** 在Java开发中,Hibernate是一个非常流行的对象关系映射(ORM)框架,它提供了一种将Java类与数据库表之间的映射方式,简化了数据库操作。本测试主要涉及了Hibernate的基础配置、实体类创建...