Hibernate的注解配置

hibernate的注解配置

hibernate的注解配置和配置文件配置不同的是不需要在配置xxx.hbm.xml了
这里首先讲注解的配置,依着客户和订单的例子来讲解。(这里是一对多的关系,所以需要配置onetomany和manytoone)

客户的注解配置(一的一方)

package onetomany;
import java.util.HashSet;
import java.util.Set;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.OneToMany;
import javax.persistence.Table;
import org.hibernate.annotations.Cascade;
import org.hibernate.annotations.CascadeType;
@Entity
@Table(name="t_customer")
public class Customer {
	@Id
	@GeneratedValue(strategy=GenerationType.IDENTITY)
	private Integer id;	
	private String name;
	@OneToMany(targetEntity=Order.class,mappedBy="c")
	@Cascade(CascadeType.ALL)
	private Set<Order>orders=new HashSet<Order>();	
	public Set<Order> getOrders() {
		return orders;
	}
	public void setOrders(Set<Order> orders) {
		this.orders = orders;
	}
	public Integer getId() {
		return id;
	}
	public void setId(Integer id) {
		this.id = id;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}	
}

订单的注解配置(多的一方)

package onetomany;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
@Entity
@Table(name="t_order")
public class Order {
	@Id
	@GeneratedValue(strategy=GenerationType.IDENTITY)
	private Integer id;	
	private Double price;	
	private String address;	
	@ManyToOne(targetEntity=Customer.class)
	@JoinColumn(name="customer_id")//制定外键列
	private Customer c;		
	public Customer getC() {
		return c;
	}
	public void setC(Customer c) {
		this.c = c;
	}
	public Integer getId() {
		return id;
	}
	public void setId(Integer id) {
		this.id = id;
	}
	public Double getPrice() {
		return price;
	}
	public void setPrice(Double price) {
		this.price = price;
	}
	public String getAddress() {
		return address;
	}
	public void setAddress(String address) {
		this.address = address;
	}		
}

测试代码

package onetomany;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
import org.junit.Test;
public class test {
	@Test
	public void test1(){
		Configuration configuration=new Configuration().configure();
		SessionFactory factory=configuration.buildSessionFactory();
		Session session=factory.openSession();
		session.beginTransaction();
		Customer c=new Customer();
		c.setName("小红");
		Order o1=new Order();
		o1.setPrice(1000d);
		o1.setAddress("北京");		
		Order o2=new Order();
		o2.setPrice(2000d);
		o2.setAddress("上海");
		o1.setC(c);
		o2.setC(c);
		//为了进行级联操作
		c.getOrders().add(o1);
		c.getOrders().add(o2);
		session.save(c);		
		session.getTransaction().commit();
		session.close();
	}
}

hibernate.cfg.xml的配置

这里和之前的配置文件有一点不同就是在映射的时候不是映射配置文件,而是映射到class里面去。

<?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>
	<!--配置关于数据库连接的四个项 driveclass URL username password-->
		<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
		<property name="hibernate.connection.url">jdbc:mysql:///hibernate</property>
		<property name="hibernate.connection.username">root</property>
		<property name="hibernate.connection.password">123456</property>
		<!--可以将向数据库发送的语句显示出来-->
		<property name="hibernate.show_sql">true</property>
		<!--格式化sql-->
		<property name="hibernate.format_sql">true</property>
		<!--hibernate的方言-->
		<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
		 <!--自动建表-->
		<property name="hibernate.hbm2ddl.auto">update</property> 
		
				<!--配置hibernate的映射文件所在位置-->
		<mapping resource="hibernate/yu/domain2/Customer.hbm.xml"/>
		<mapping resource="hibernate/yu/domain2/Order.hbm.xml"/>
		<mapping class="hibernate.yu.zhujie.Book"/>
		<mapping class="hibernate.yu.zhujie.Person"/>
		<mapping class="onetomany.Customer"/>
		<mapping class="onetomany.Order"/>
		
		
	</session-factory>

</hibernate-configuration>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值