Hibernate双向映射组件

和单向的类似,只不过多加了一个关联User关联Frofile,Profile同时也关联User

User类

import java.io.Serializable;
import com.lbx.hibernate.model.Profile;

/**
 * 组件双向关联
 * @author Administrator
 *
 */

@SuppressWarnings("serial")
public class User implements Serializable{
	
	private int id;
	private String username;
	private String password;
	private Profile profile;
	
	public int getId() {
		return id;
	}
	public void setId(int 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 Profile getProfile() {
		return profile;
	}
	public void setProfile(Profile profile) {
		this.profile = profile;
	}
	
}

 

Profile类

import java.io.Serializable;

@SuppressWarnings("serial")
public class Profile implements Serializable{
	
	private User user;
	private String email;
	private String phone;
	private String mobile;
	private String address;
	private String postcode;
	
	public User getUser() {
		return user;
	}
	public void setUser(User user) {
		this.user = user;
	}
	public String getEmail() {
		return email;
	}
	public void setEmail(String email) {
		this.email = email;
	}
	public String getPhone() {
		return phone;
	}
	public void setPhone(String phone) {
		this.phone = phone;
	}
	public String getMobile() {
		return mobile;
	}
	public void setMobile(String mobile) {
		this.mobile = mobile;
	}
	public String getAddress() {
		return address;
	}
	public void setAddress(String address) {
		this.address = address;
	}
	public String getPostcode() {
		return postcode;
	}
	public void setPostcode(String postcode) {
		this.postcode = postcode;
	}
	
}

 User.hbm.xml文件

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC 
	"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
	"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping 
	package="com.lbx.hibernate.model">
	
	<class name="User" table="user" lazy="true">
		
		<id name="id" type="int">
			<column name="id" scale="0" />
			<generator class="increment" /> 
		</id>
		
		<property name="username" type="java.lang.String" />
		<property name="password" type="java.lang.String" />
		
		<component name="profile" class="com.lbx.hibernate.model.Profile">
			<parent name="user"/>
			<property name="email"  type="string" />
			<property name="phone"  type="string" />
			<property name="mobile"  type="string" />
			<property name="address"  type="string" />
			<property name="postcode" type="string" />
		</component>
		
	</class>
	
</hibernate-mapping>

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值