我正在尝试使用休眠映射实体,但使用 SQL Server,我无法继续。
以下是详细信息。
SQL Server 实体
CREATE TABLE [dbo].[BOOK_EMBEDDED](
[row_id] [bigint] IDENTITY(1,1) NOT NULL,
[group_no] [int] NOT NULL,
[book_name] [varchar](255) NULL,
CONSTRAINT [PK_BOOK_EMBEDDED] PRIMARY KEY CLUSTERED
(
[group_no] ASC,
[row_id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
==============================
嵌入密钥
--------------------------
@Embeddable
public class EmbeddedKey implements Serializable {
private static final long serialVersionUID = 1L;
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "row_id")
private Long rowId;
@Column(name = "group_no")
private int groupNo;
public Long getRowId() {
return rowId;
}
public void setRowId(Long rowId) {
this.rowId = rowId;
}
public static long getSerialversionuid() {
return serialVersionUID;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = (int) (prime * result + rowId);
result = prime * result + groupNo;
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
EmbeddedKey other = (EmbeddedKey) obj;
if (rowId != other.rowId)
return false;
if (groupNo != other.groupNo)
return false;
return true;
}
@Override
public String toString() {
return this.getRowId() + " " + this.getGroupNo() + " ";
}
public int getGroupNo() {
return groupNo;
}
public void setGroupNo(int groupNo) {
this.groupNo = groupNo;
}
}
实体
--------------
@Entity(name = "BOOK_EMBEDDED")
public class BookMySQL implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
@Column(name = "BOOK_NAME")
private String book_Name;
@EmbeddedId
private EmbeddedKey key;
public BookMySQL() {
}
public String getBook_Name() {
return book_Name;
}
public void setBook_Name(String book_Name) {
this.book_Name = book_Name;
}
public static long getSerialversionuid() {
return serialVersionUID;
}
public EmbeddedKey getKey() {
return key;
}
public void setKey(EmbeddedKey key) {
this.key = key;
}
@Override
public String toString() {
return this.getKey().toString() + " " + this.getBook_Name();
}
}
实体管理器类
------------------------------
public class LocalEntityManager {
private static EntityManagerFactory emf;
private static EntityManager em;
private LocalEntityManager() {
}
public static EntityManager getEntityManger() {
if (emf == null) {
synchronized (LocalEntityManager.class) {
if (emf == null) {
emf = Persistence.createEntityManagerFactory("BookEntities");
em = emf.createEntityManager();
}
}
}
return em;
}
}
图书服务
------------------
public class MySQLBookService {
public Long persistBook(String bookName) {
EmbeddedKey key = new EmbeddedKey();
key.setGroupNo(1);
BookMySQL book = new BookMySQL();
book.setBook_Name(bookName);
book.setKey(key);
EntityManager em = LocalEntityManager.getEntityManger();
EntityTransaction tx = em.getTransaction();
tx.begin();
em.persist(book);
tx.commit();
em.close();
return book.getKey().getRowId();
}
public BookMySQL findBook(int bookId) {
EntityManager em = LocalEntityManager.getEntityManger();
EmbeddedKey key = new EmbeddedKey();
key.setGroupNo(1);
key.setRowId(1L);
BookMySQL bookMySQL = em.find(BookMySQL.class, key);
System.out.println(bookMySQL);
return bookMySQL;
}
public static void main(String... args) {
MySQLBookService bookService = new MySQLBookService();
// bookService.findBook(1);
bookService.persistBook("Lord of the rings");
}
}
问题是我不能使用序列并且通过执行这个 findBook 总是可以工作并且持久失败并出现错误。
ERROR: Cannot insert explicit value for identity column in table 'BOOK_EMBEDDED' when IDENTITY_INSERT is set to OFF.
任何帮助将不胜感激。