0
Spring Data Gemfireで自動生成IDを使用できますか? 私はSimpleGemfireRepository
で簡単に見からMyGemfireSpring GemfireエンティティクラスIDの生成
@region("myregion")
class MyGemfire{
@Id
@generatedValue????// if it is not possible what method I have to use to generate id in auto increment fashion?
Long id;
String name;
...
}
ありがとうございました。私はUUIDジェネレータを使用しました。 – Ezd