zoukankan      html  css  js  c++  java
  • org.springframework.dao.InvalidDataAccessApiUsageException:The given object has a null identifi的解决方案

    异常信息:

    org.springframework.dao.InvalidDataAccessApiUsageException: The given object has a null identifier: com.blog.entity.PersonalizedSettings; nested exception is org.hibernate.TransientObjectException: The given object has a null identifier: com.blog.entity.PersonalizedSettings


    发生原因:抛这个异常是因为,当你在更新数据时,从JSP页面往Action传值没有传递ID值。

    解决方案:把ID值放在隐藏域传递过去就OK了

     <input type="hidden" name="personalizedSettings.id" value="<s:property value='personalizedSettings.id'/>"/> 

    版权声明:本文为博主原创文章,未经博主允许不得转载。

  • 相关阅读:
    基于JavaMail开发邮件发送器工具类
    微服务架构
    图像识别
    Manacher
    左偏树
    虚树
    动态树(Link-Cut Tree)
    Splay
    扩展中国剩余定理(EXCRT)
    K-D树
  • 原文地址:https://www.cnblogs.com/codingcloud/p/5262983.html
Copyright © 2011-2022 走看看