liferayポートレットからデータベースに2回目を挿入しているときに、次の例外が発生しました。
[JDBCExceptionReporter:76] Duplicate entry '0' for key 'PRIMARY'.
(主キーの値が自動インクリメントされていないためだと思います)
カスタム ポートレットで主キーを自動インクリメントしているときに間違いを犯したと思いますが、どこを変更すればよいかわかりません。
この自動インクリメントの問題を解決するためにどこに変更を加えるかについて誰かが私を案内してくれますか?
これは、自動インクリメントが設定されたコードです
restVar = restaurantPersistence.create(counterLocalService
.increment(restaurant.class.toString()));
} catch (SystemException e) {
e.printStackTrace();
return restVar = null;
}
try {
resourceLocalService.addResources(0,restParam.getGroupId(), restParam.getUserId(),
restaurant.class.getName(),restParam.getPrimaryKey(), false,true,true);
} catch (PortalException e) {
e.printStackTrace();
return restVar = null;
} catch (SystemException e) {
e.printStackTrace();
return restVar = null;
}