javaweb-dao.InvalidDataAccessApiUsageException

问题描述

dao.InvalidDataAccessApiUsageException

deleted object would be re-saved by cascade (remove deleted object from associations): [cn.jbit.demo.entity.ClaimVoucher#113]; nested exception is org.hibernate.ObjectDeletedException: deleted object would be re-saved by cascade (remove deleted object from associations): [cn.jbit.demo.entity.ClaimVoucher#113]

求解决,删除主键数据时报错,设置了cascade=all,不能在删除时级联删除引用它的数据吗?

解决方案

```

相关文章


  • c-VC程序编写,可以调试但不能直接运行……
  • c语言-C语言课程设计---商品订购系统 调试
  • 感谢帮忙!-VC串口数据处理绘制实时波形
  • 算法递推关系式-求解下列递推关系式,给出确切解:
  • c语言 c++-有关图书管理系统的课程设计
  • struct-error C2440:无法从“const char [5]”转换为char [20]”
  • c语言-C语言递归函数C语言递归函数C语言递归函数
  • c语言中for循环设置步长以后,自变量不按步长累加是怎么回事
  • 信息-只有C语言实现,急求用C#实现机票预订管理系统源代码及界面
  • c语言-用C语言递归实现因数分解,不得使用循环

【云栖快讯】2017互联网超级工程阿里双11完美落幕,交易额突破1682亿,但阿里工程师如何玩转“超级工程”,背后黑科技又是如何?12月13-14日,12位大咖直播分享揭秘1682亿背后技术实践,马上预约  详情请点击

热门推荐


  • 高性能云服务器2折起
  • 云服务器配置
  • 技术资料
  • 云计算
  • 域名
  • shell
  • node.js
  • 问答
  • java
  • mysql
  • C++
  • python
  • jQuery
  • Android
  • asp
  • PHP技巧
  • jQuery教程
  • JavaScript技巧
  • JS
  • SEO
  • sql server
  • mysql教程
  • 前端
  • 技术文集
  • 技术
  • 主题地图
  • A
  • z
  • 云服务器哪家好
  • API
  • 大数据
  • 云安全
  • 云存储
  • 云计算
  • 获取公众号授权失败
  • 兼容性疑难解答
  • path
  • stm32
  • jsonobject
  • product

前三篇


  • c#-新手,datagridview控件问题,为什么我这边第一行的数据一直不显示
  • git clone 本机c盘的一个仓库
  • The posix_isatty() is available: FAILED

后三篇


  • Hibernate 注解 mappedby属性
  • 微云-云中SQL数据库订阅转换错误
  • spring+mybatis事务不生效,求解

(yq.aliyun.com)为您免费提供javaweb-dao.InvalidDataAccessApiUsageException相关信息,包括
hibernate
javaweb
的信息
,所有javaweb-dao.InvalidDataAccessApiUsageException相关内容均不代表的意见!
该页面h5页面的地址是:https://m.aliyun.com/yunqi/wenzhang/show_51620,您可以点击javaweb-dao.InvalidDataAccessApiUsageException-手机站访问。

时间: 2024-11-03 16:12:44

javaweb-dao.InvalidDataAccessApiUsageException的相关文章

用 OpenSessionInViewInterceptor 的思路解决 Spring框架中的Hibernate Lazy

众所周知, 为了解决 Hibernate Lazy 问题, Spring 中引入了 OpenSessionInViewInterceptor, 这样虽然解决了页面上的 Lazy Load 问题,却增加了各层之间的偶合性, 如果一个 Lazy 的 Collection 在页面上可以被正确的 load, 但是如果请求不是来自于 HttpServletRequest (比如在 TestCase 或 Service 中希望获取 lazy 的属性), 一般会导致两种错误: 代码 1. 设置了 lazy =

求教Spring.net+Nhibernate+WCF分布式事务

问题描述 在操作数据的时候出现"Spring.Dao.InvalidDataAccessApiUsageException"类型的异常在Spring.Data.dll中发生,但未在用户代码中进行处理其他信息:Writeoperationsarenotallowedinread-onlymode(FlushMode.NEVER)-turnyourSessionintoFlushMode.AUTOorremove'readOnly'markerfromtransactiondefiniti

java spring- Write operations are not allowed in read-only mod

问题描述 Write operations are not allowed in read-only mod flushMode AUTO singleSession true 我已经添加这段话了,不报错了,但是添加,修改,删除都不起作用 解决方案 HibernateDaoSupport的子类在保存实体时抛出InvalidDataAccessApiUsageException异常,异常堆栈如下:org.springframework.dao.InvalidDataAccessApiUsageEx

hibernate 延迟加载的错误 failed to lazily initialize a collection of role

这个问题一般出现在一对多的情况下,解决的方法有两种1.设置lazy=false如果是用annotation,则配置如下@OneToMany(   targetEntity = CourseAuthorizationItem.class,   cascade = {CascadeType.PERSIST, CascadeType.MERGE},   mappedBy = "course", fetch=FetchType.EAGER  )将fetch类型设置成直接获取 2.就是使用fil

spring事务 异常-spring+hibernate注解开发异常,事务相关

问题描述 spring+hibernate注解开发异常,事务相关 异常信息: org.springframework.dao.InvalidDataAccessApiUsageException: Write operations are not allowed in read-only mode (FlushMode.MANUAL): Turn your Session into FlushMode.COMMIT/AUTO or remove 'readOnly' marker from tr

Spring-data-redis问题

问题描述 使用的RedisTemplate,做读写操作时候,都是要经过序列化和反序列化.最近遇到了一个问题,使用incr计数,存进去了一个数字(int类型),但是因为是序列化之后存进去的,调用incr方法时候报错了:​org.springframework.dao.InvalidDataAccessApiUsageException:ERRvalueisnotanintegeroroutofrange;nestedexceptionisredis.clients.jedis.exceptions

spring 事务-not allowed in read-only mode没配置事务,为何报事务方面的错

问题描述 not allowed in read-only mode没配置事务,为何报事务方面的错 org.springframework.dao.InvalidDataAccessApiUsageException: Write operations are not allowed in read-only mode (FlushMode.MANUAL): Turn your Session into FlushMode.COMMIT/AUTO or remove 'readOnly' mar

weblogic报错:Couldn't initialize OracleLobHandler,有谁遇到过吗?

问题描述 之前的war包都运行的好好的,可最近忽然weblogic报出这样的错误:org.springframework.dao.DataAccessResourceFailureException: Could not create Oracle LOB; nested exception is org.springframework.dao.InvalidDataAccessApiUsageException: Couldn't initialize OracleLobHandler bec

No ongoing transaction. Did you forget to call multi?

  2016-10-21 14:41:47,551 [ERROR] [http-nio-8032-exec-2] TransactionSynchronizationUtils:171 - TransactionSynchronization.afterCompletion threw exceptionorg.springframework.dao.InvalidDataAccessApiUsageException: No ongoing transaction. Did you forge