2009-01-25から1日間の記事一覧

org.hibernate.id.IdentifierGenerationException: ids for this class must be manually assigned before calling save()

HibernateでIDが自動生成(autoincrementのような)したい場合に、 org.hibernate.id.IdentifierGenerationException: ids for this class must be manually assigned before calling save() と出る。 マッピングファイルのgeneratorクラスの設定が原因。 <id name="nid" type="int" column="nid" > <meta attribute="field-description"> </meta></id>…