Hibernate - Batch update returned unexpected row count from update: 0 actual row count: 0 expected: 1

前端 未结 30 3844
夕颜
夕颜 2020-11-28 20:47

I get following hibernate error. I am able to identify the function which causes the issue. Unfortunately there are several DB calls in the function. I am unable to find the

30条回答
  •  眼角桃花
    2020-11-28 21:14

    This happened if you change something in data set using native sql query but persisted object for same data set is present in session cache. Use session.evict(yourObject);

提交回复
热议问题