В моей базе данных пост может быть во многих категориях, а в категории может быть много постов. У меня есть одно отношение к должности и другое для категории. Вот их отображения JPA:
Почтовое лицо:
@ManyToMany(cascade = {PERSIST, MERGE})
private Set<Category> categories = new HashSet<>();
Категория объекта:
@ManyToMany(mappedBy = "categories")
private Set<Post> posts = new HashSet<>();
Другие операции работают правильно, но когда я пытаюсь удалить сообщение:
@CacheEvict(cacheNames = "pinnedPosts", allEntries = true)
public void deletePost(long postId) {
Optional<Post> optionalPost = postRepository.findById(postId);
if (optionalPost.isPresent()) {
Post post = optionalPost.get();
for (Category category : post.getCategories()) {
long newScore = post.getAuthor().getScore() - post.getLikesCount() * likeScore;
post.getAuthor().setScore(newScore);
category.getPosts().remove(post);
}
postRepository.deleteById(postId);
} else {
throw new PostNotFoundException();
}
}
удаление завершено успешно , но Hibernate выдает исключение (я хочу, чтобы оно было удалено без каких-либо исключений!). вот запросы в спящем режиме и исключение, которое выдает «спящий» (я не знаю, почему запросы выполняются дважды. Это вызывает проблемы?):
...
Hibernate: delete from post_categories where posts_id=?
Hibernate: delete from post_categories where posts_id=?
Hibernate: delete from post_likers where favorites_id=?
Hibernate: delete from post_likers where favorites_id=?
Hibernate: delete from post where id=?
Hibernate: delete from post where id=?
2018-05-12 20:59:53.621 ERROR 14652 --- [nio-8000-exec-4] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.orm.ObjectOptimisticLockingFailureException: Batch update returned unexpected row count from update [0]; actual row count: 0; expected: 1; nested exception is org.hibernate.StaleStateException: Batch update returned unexpected row count from update [0]; actual row count: 0; expected: 1] with root cause
org.hibernate.StaleStateException: Batch update returned unexpected row count from update [0]; actual row count: 0; expected: 1
at org.hibernate.jdbc.Expectations$BasicExpectation.checkBatched(Expectations.java:67) ~[hibernate-core-5.2.14.Final.jar:5.2.14.Final]
at org.hibernate.jdbc.Expectations$BasicExpectation.verifyOutcome(Expectations.java:54) ~[hibernate-core-5.2.14.Final.jar:5.2.14.Final]
at org.hibernate.engine.jdbc.batch.internal.NonBatchingBatch.addToBatch(NonBatchingBatch.java:46) ~[hibernate-core-5.2.14.Final.jar:5.2.14.Final]
at org.hibernate.persister.entity.AbstractEntityPersister.delete(AbstractEntityPersister.java:3325) ~[hibernate-core-5.2.14.Final.jar:5.2.14.Final]
at org.hibernate.persister.entity.AbstractEntityPersister.delete(AbstractEntityPersister.java:3562) ~[hibernate-core-5.2.14.Final.jar:5.2.14.Final]
at org.hibernate.action.internal.EntityDeleteAction.execute(EntityDeleteAction.java:99) ~[hibernate-core-5.2.14.Final.jar:5.2.14.Final]
at org.hibernate.engine.spi.ActionQueue.executeActions(ActionQueue.java:599) ~[hibernate-core-5.2.14.Final.jar:5.2.14.Final]
at org.hibernate.engine.spi.ActionQueue.executeActions(ActionQueue.java:473) ~[hibernate-core-5.2.14.Final.jar:5.2.14.Final]
at org.hibernate.event.internal.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:337) ~[hibernate-core-5.2.14.Final.jar:5.2.14.Final]
...