Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はSpring 3 MVCアプリケーションを開発しています。ORMとして休止状態を使用しています。モデルの定義中に、ID フィールドがあります。その値がテーブル内の現在の行数 + 1 になるように自動生成したいのですが、どうすればよいですか?
AUTOINCREMENT列またはシーケンスでうまくいきます。Hibernate では、次のように注釈idを付けるだけ@GeneratedValueです。
AUTOINCREMENT
id
@GeneratedValue
@Id @GeneratedValue(strategy=GenerationType.AUTO) private int id;
Hibernate は自動的に id を次に使用可能な値に設定します。