码迷,mamicode.com
首页 > Web开发 > 详细

Hibernate------------注解配置

时间:2016-07-12 23:35:05      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:hibernate   注解   

package com.model;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
/**
 * Students entity. @author MyEclipse Persistence Tools
 */
@Entity
@Table(name = "students", catalog = "hibernate")
public class Students implements java.io.Serializable {
// Fields
private Integer sid;
private String name;
private String gender;
private Date birthday;
private String address;
// Constructors
/** default constructor */
public Students() {
}
/** minimal constructor */
public Students(Integer sid) {
this.sid = sid;
}
/** full constructor */
public Students(Integer sid, String name, String gender,
Date birthday, String address) {
this.sid = sid;
this.name = name;
this.gender = gender;
this.birthday = birthday;
this.address = address;
}
// Property accessors
@Id
@Column(name = "sid", unique = true, nullable = false)
public Integer getSid() {
return this.sid;
}
public void setSid(Integer sid) {
this.sid = sid;
}
@Column(name = "name", length = 50)
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
@Column(name = "gender", length = 50)
public String getGender() {
return this.gender;
}
public void setGender(String gender) {
this.gender = gender;
}
@Column(name = "birthday", length = 19)
public Date getBirthday() {
return this.birthday;
}
public void setBirthday(Date birthday) {
this.birthday = birthday;
}
@Column(name = "address", length = 200)
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
}

Hibernate------------注解配置

标签:hibernate   注解   

原文地址:http://11688553.blog.51cto.com/11678553/1825860

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!