Hibernate各种映射类型

People:

package model;

import java.sql.Date;
import java.sql.Timestamp;

public class People {
	private Long id;
	
	private String username;
	
	private String password;
	
	private int telphone;
	
	private char gender; //'M','F'
	
	private boolean graduation;//true or false
	
	private Date birthday;
	
	private Timestamp marryTime;
	
	private byte[] file;//二进制

	public Long getId() {
		return id;
	}

	public void setId(Long id) {
		this.id = id;
	}

	public String getUsername() {
		return username;
	}

	public void setUsername(String username) {
		this.username = username;
	}

	public String getPassword() {
		return password;
	}

	public void setPassword(String password) {
		this.password = password;
	}

	public int getTelphone() {
		return telphone;
	}

	public void setTelphone(int telphone) {
		this.telphone = telphone;
	}

	public char getGender() {
		return gender;
	}

	public void setGender(char gender) {
		this.gender = gender;
	}

	public boolean isGraduation() {
		return graduation;
	}

	public void setGraduation(boolean graduation) {
		this.graduation = graduation;
	}

	public Date getBirthday() {
		return birthday;
	}

	public void setBirthday(Date birthday) {
		this.birthday = birthday;
	}

	public Timestamp getMarryTime() {
		return marryTime;
	}

	public void setMarryTime(Timestamp marryTime) {
		this.marryTime = marryTime;
	}

	public byte[] getFile() {
		return file;
	}

	public void setFile(byte[] file) {
		this.file = file;
	}
}	


package model;



import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.sql.Timestamp;

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;

public class HibernateTest {
	private static SessionFactory sessionFactory;
	
	static {
		try {
			sessionFactory = new Configuration().configure().buildSessionFactory();
		}catch(Exception ex) {
			ex.printStackTrace();
		}
	}
	public static void main(String[] args) throws IOException {
		People people = new People ();
		people.setUsername("zhangsan");
		people.setPassword("123456");
		people.setGender('F');
		people.setBirthday(new java.sql.Date(new java.util.Date().getTime()));
		people.setTelphone(98765);
		people.setMarryTime(new Timestamp(new java.util.Date().getTime()));
		people.setGraduation(true);
		InputStream is = new FileInputStream ("d:/build.xml");
		
		int length = is.available();
		byte[]buffer = new byte[length];
		is.read(buffer);
		is.close();
		people.setFile(buffer);
		Session session = sessionFactory.openSession();
		Transaction tx = session.beginTransaction();
		try {
			session.save(people);
			tx.commit();
		}catch (Exception ex) {
			ex.printStackTrace();
			if (null != tx) {
				tx.rollback();
			}
		}finally{
			session.close();
		}
	}
}

映射文件:

<?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>
	<class name = "model.People" table = "People">
		<id name = "id" column = "id" type = "long">
			<generator class="increment"></generator>
		</id>
		<property name = "username" column = "username" type = "string"></property>
		<property name = "password" column = "password" type = "string"></property>
		<property name = "telphone" column = "telphone" type = "int"></property>
		<property name = "gender" column = "gender" type = "character"></property>
		<property name="graduation" column = "graduation" type = "boolean"></property>
		<property name = "birthday" column = "birthday" type = "date"></property>
		<property name = "marryTime" column = "marryTime" type = "timestamp"></property>
		<property name = "file" column = "file" type = "binary"></property>
	</class>
</hibernate-mapping>


对于分页操作来说,需要知道如下一些信息:

当前正在操作的是第几页,每一页显示多少条记录。

主要使用Query中的setFirstResutl和setMaxResults方法。


对于Query接口的list()方法与iterator()方法来说,都可以实现获取查询的

对象 ,但是list()方法返回的每个对象都是完整的(对象中的每个属性都被

表中的字段填上了),而iterator()方法所返回的对象中仅包含了主键(标识符),

只有当你对iterator()中的对象操作时,hibernate才会向数据库再次发送SQL语句来获取对象的的属性值。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器学习模型机器
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值