[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: ConstraintViolation & redundant entries

bluetrade do-not-reply at jboss.com
Mon Oct 2 14:16:12 EDT 2006


Hi, 
so i found the problem but no solution. The problem is that the foreign key of the referenced "Word" is inside the Join-Table marked as unique, which I switched manually to index. 
Anyone got any clues on how I can avoid the word_content being unique in the join table? Thanks!!


  | @OneToMany
  |     @JoinTable(name="sentence_word",
  |                joinColumns={@JoinColumn(name="sentence_id")},
  |                inverseJoinColumns={@JoinColumn(name="word_content",referencedColumnName="content")})
  | 	
  | 	/**
  | 	 * @return the words
  | 	 */
  | 	public Collection<Word> getWords() {
  | 		return words;
  | 	}
  | 

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3975576#3975576

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3975576



More information about the jboss-user mailing list