0

我有一个存储 fk id、布尔值和时间戳的 JPA 实体:

@Entity
public class ChannelInUse implements Serializable {
  @Id
  @GeneratedValue
  private Long id;
  @ManyToOne
  @JoinColumn(nullable = false)
  private Channel channel;
  private boolean inUse = false;
  @Temporal(TemporalType.TIMESTAMP)
  private Date inUseAt = new Date();
  ...
 }

我希望这个实体的每个新实例都在表中产生一个新行。无论出于何种原因,无论我做什么,它总是会导致该行使用新的时间戳值进行更新,而不是创建一个新行。甚至尝试仅使用本机查询来运行插入,但尚未填充频道 ID,因此我放弃了。我尝试使用由 channel.getId 和 inUseAt 组成的嵌入式 id 类。我的等号和哈希码是:

 public boolean equals(Object obj){
  if(this == obj)
   return true;
  if(!(obj instanceof ChannelInUse))
   return false;
  ChannelInUse ciu = (ChannelInUse) obj;
  return ( (this.inUseAt == null ? ciu.inUseAt == null : this.inUseAt.equals(ciu.inUseAt)) 
    && (this.inUse == ciu.inUse) 
    && (this.channel == null ? ciu.channel == null : this.channel.equals(ciu.channel))
    );
 }
 /**
  * hashcode generated from at, channel and inUse properties. 
  */
 public int hashCode(){
  int hash = 1;
  hash = hash * 31 + (this.inUseAt == null ? 0 : this.inUseAt.hashCode());
  hash = hash * 31 + (this.channel == null ? 0 : this.channel.hashCode());
  if(inUse)
   hash = hash * 31 + 1;
  else
   hash = hash * 31 + 0;
  return hash;
 }
}

我尝试过将休眠的实体注释与 mutable=false 一起使用。我可能只是不明白是什么让一个实体独一无二或什么。非常努力地打谷歌,但无法弄清楚这一点。

更新:添加持久代码:

public void store(Map<String, String> params,

        Map<?, ?> values) throws Exception {
    VoiceInterface iface = (VoiceInterface) getStorageUnit(params);
    ALeafPort leafPort = getLeafPort(iface);
    SortedSet<Channel> channels = leafPort.getChannels();
    Iterator<Channel> it = channels.iterator();
    while(it.hasNext()){
        Channel c = it.next();
        ChannelInUse ciu = new ChannelInUse(c,
                           ((Boolean) values.get(c.getNumber())).booleanValue());   
        em.persist(ciu);
    }
}

getStorageUnit 和 getLeafPort 从存储中查找正确的对象(如果它们不存在,则创建它们)。

4

1 回答 1

0

是的,应该注意那个 hbm2ddl.auto=create 属性。哎呀!

于 2010-05-12T02:25:03.517 回答