📄 pointytooth.java
字号:
//$Id: PointyTooth.java 14761 2008-06-11 13:51:06Z hardy.ferentschik $package org.hibernate.test.annotations.id.entities;import java.io.Serializable;import java.math.BigInteger;import javax.persistence.Column;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 org.hibernate.annotations.GenericGenerator;/** * Blown precision on related entity when @JoinColumn is used. * Does not cause an issue on HyperSonic, but replicates nicely on PGSQL. * * @see ANN-748 * @author Andrew C. Oliver andyspam@osintegrators.com */@Entity@SuppressWarnings("serial")public class PointyTooth implements Serializable { @Id @GeneratedValue(strategy = GenerationType.IDENTITY, generator = "java5_uuid") @GenericGenerator(name = "java5_uuid", strategy = "org.hibernate.test.annotations.id.UUIDGenerator") @Column(name = "id", precision = 128, scale = 0) private BigInteger id; @ManyToOne @JoinColumn(name = "bunny_id") Bunny bunny; public void setBunny(Bunny bunny) { this.bunny = bunny; } public BigInteger getId() { return id; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -