タイトル: Not supported for DML operations
SEOタイトル: Not supported for DML operations【Springエラー】
| この記事の要点 |
|---|
|
エラー内容
|
Caused by: java.lang.RuntimeException: org.hibernate.hql.internal.QueryExecutionRequestException: Not supported for DML operations [UPDATE ... ]; nested exception is java.lang.IllegalStateException: org.hibernate.hql.internal.QueryExecutionRequestException: Not supported for DML operations [UPDATE ... ] |
発生条件/原因/対処法
JPAで更新系のSQLを実行した際に発生するエラー。
更新系のメソッドに@Transactional がない もしくは @Transactional だけ付与されていると発生する。
以下のように@Modifyingを付与することで当エラーは解決する。
|
@Repository |