I was asked to make some changes (and updates) in a database that is used by a web application using play.db.jpa.Model. I was wondering how does play.db.jpa.Model class provide automatically the auto generated Long id field I want to insert data independent the web application
質問する
434 次
1 に答える
3
Model のクラスを見ると、このコード スニペットが表示されます。
@Id
@GeneratedValue
public Long id;
2 つの注釈は、自動番号の生成を担当します。これがどのように機能するかの詳細については、hibernate のドキュメントで識別子のプロパティを確認してください。
于 2012-07-31T19:19:05.070 に答える