Câu hỏi được gắn thẻ «hibernate-annotations»


9
Hibernate ném org.hibernate.AnnotationException: Không có định danh được chỉ định cho thực thể: com..domain.idea.MAE_MFEView
Tại sao tôi nhận được ngoại lệ này? package com.domain.idea; import javax.persistence.CascadeType; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.JoinColumn; import javax.persistence.OneToOne; import javax.persistence.Table; import org.hibernate.annotations.AccessType; /** * object model for the view [InvestmentReturn].[vMAE_MFE] */ @Entity @Table(name="vMAE_MFE", schema="InvestmentReturn") @AccessType("field") public class MAE_MFEView { /** * trade property is a SuggestdTradeRecommendation object */ …

4
@UniqueConstraint và @Column (unique = true) trong chú thích ngủ đông
Sự khác biệt giữa @UniqueConstraint và @Column (unique = true) là gì? Ví dụ: @Table( name = "product_serial_group_mask", uniqueConstraints = {@UniqueConstraint(columnNames = {"mask", "group"})} ) Và @Column(unique = true) @ManyToOne(optional = false, fetch = FetchType.EAGER) private ProductSerialMask mask; @Column(unique = true) @ManyToOne(optional = false, fetch = FetchType.EAGER) private Group group;

3
ánh xạBằng cách tham chiếu một thuộc tính thực thể mục tiêu không xác định
Tôi đang gặp sự cố khi thiết lập mối quan hệ một đến nhiều trong đối tượng được chú thích của mình. Tôi có những thứ sau: @MappedSuperclass public abstract class MappedModel { @Id @GeneratedValue(strategy=GenerationType.AUTO) @Column(name="id",nullable=false,unique=true) private Long mId; thì đây @Entity @Table(name="customer") public class Customer extends MappedModel implements Serializable …
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.