`

Hibernate异常No row with the given identifier exists 解决方法

 
阅读更多
产生此问题的原因:
             有两张表,删除主键数据,导致外键数据找不到引用了,这样就会报No row with the given identifier exists这个错.(一句话,就是数据的
现在hibernate配置可以基于xml配置文件和注解方式,这两种方式都能发生这个异常
xml配置文件解决方法(或者手动恢复数据):
<many-to-one class="com.art.model.user.UserInfo" fetch="join" name="userInfo" >  
   <column name="userId" unique="true"/>  
</many-to-one> 

修改后的:
<many-to-one class="com.art.model.user.UserInfo" fetch="join" name="userInfo" not-found="ignore">  
   <column name="userId" unique="true"/>  
</many-to-one> 

红色是修改的部分。意思是当对应的数据不存在时 忽略掉,用null值填充。该属性默认值:exception 。

注解配置解决方法:
使用hibernate 注解配置实体类的关联关系,在many-to-one,one-to-one关联中,一边引用自另一边的属性,如果属性值为某某的数据在数据库不存在了,hibernate默认会抛出异常。解决此问题,加上如下注解就可以了:
@NotFound(action=NotFoundAction.IGNORE),意思是找不到引用的外键数据时忽略,NotFound默认是exception
如果是使用的freemarker的话
使用
<#if rankchange.dictNowRanks?exists>${rankchange.dictNowRanks.vcName}</#if>

由于dictNowRanks找不到会抛出exception,所以?exists都是true,都是会进入的。使用@NotFound(action=NotFoundAction.IGNORE之后,找不到则忽略,相当于返回空
下面贴出hibernate 注解的实例代码
@Entity
@Table(name = "PM_BSC_RANK_CHANGE")
@SequenceGenerator(name="sg", sequenceName="SEQ_PM_BSC_RANK_CHANGE", allocationSize=1)
@org.hibernate.annotations.Entity(dynamicInsert = true, dynamicUpdate = true)
public class PmBscRankChange extends BizEntity{

	// Fields

	private Long pid;
	private PmBscStaffInfo pmBscStaffInfo;
	private Date vcNowDate;
	private Date vcChgDate;
	private String vcRemark;
	private Long vcIfedit;
	private Long vcType;
	private Date vcEndDate;
	
	//private Date vcCreateDate;

	private PmBscDict dictNowRanks;//调动前职级
	private PmBscDict dictChgRanks;//调动后职级
	// Constructors

	/** default constructor */
	public PmBscRankChange() {
	}

	/** minimal constructor */
	public PmBscRankChange(Long pid) {
		this.pid = pid;
	}

	// Property accessors
	@Id
	@Column(name = "PID", unique = true, nullable = false, precision = 20, scale = 0)
	@GeneratedValue(strategy=GenerationType.SEQUENCE, generator="sg")
	public Long getPid() {
		return this.pid;
	}

	public void setPid(Long pid) {
		this.pid = pid;
	}

	@ManyToOne(fetch = FetchType.LAZY)
	@JoinColumn(name = "VC_STAFF_ID")
	public PmBscStaffInfo getPmBscStaffInfo() {
		return this.pmBscStaffInfo;
	}

	public void setPmBscStaffInfo(PmBscStaffInfo pmBscStaffInfo) {
		this.pmBscStaffInfo = pmBscStaffInfo;
	}

	@Column(name = "VC_NOW_DATE")
	public Date getVcNowDate() {
		return this.vcNowDate;
	}

	public void setVcNowDate(Date vcNowDate) {
		this.vcNowDate = vcNowDate;
	}

	@Column(name = "VC_CHG_DATE")
	public Date getVcChgDate() {
		return this.vcChgDate;
	}

	public void setVcChgDate(Date vcChgDate) {
		this.vcChgDate = vcChgDate;
	}

	@Column(name = "VC_REMARK", length = 1000)
	public String getVcRemark() {
		return this.vcRemark;
	}

	public void setVcRemark(String vcRemark) {
		this.vcRemark = vcRemark;
	}

	
	@ManyToOne(fetch = FetchType.LAZY)
	@JoinColumn(name = "VC_NOW_RANK", columnDefinition="NUMBER(20)", nullable=false)
	@NotFound(action=NotFoundAction.IGNORE)    
	public PmBscDict getDictNowRanks() {
		return dictNowRanks;
	}
	
	public void setDictNowRanks(PmBscDict dictNowRanks) {
		this.dictNowRanks = dictNowRanks;
	}

	@ManyToOne(fetch = FetchType.LAZY)
	@JoinColumn(name = "VC_CHG_RANK", columnDefinition="NUMBER(20)", nullable=false)
	@NotFound(action=NotFoundAction.IGNORE)
	public PmBscDict getDictChgRanks() {
		return dictChgRanks;
	}

	public void setDictChgRanks(PmBscDict dictChgRanks) {
		this.dictChgRanks = dictChgRanks;
	}

	@Column(name = "VC_IFEDIT")
	public Long getVcIfedit() {
		return vcIfedit;
	}

	public void setVcIfedit(Long vcIfedit) {
		this.vcIfedit = vcIfedit;
	}

	@Column(name = "VC_TYPE")
	public Long getVcType() {
		return vcType;
	}

	public void setVcType(Long vcType) {
		this.vcType = vcType;
	}

	@Column(name = "VC_END_DATE")
	public Date getVcEndDate() {
		return vcEndDate;
	}

	public void setVcEndDate(Date vcEndDate) {
		this.vcEndDate = vcEndDate;
	}
分享到:
评论

相关推荐

    no resource

    很抱歉,但根据提供的信息,标题"no resource"和描述"fe ge 2007 programe"没有明确指出任何具体的IT知识点。标签同样显示为"no resource",也没有提供额外的线索。压缩包子文件的文件名称列表包括:飞鸽传书升级...

    hibernate常见异常

    a different object with the same identifier value was already associated with the session 是一种常见的异常,通常是由于在 Hibernate 中同一个 session 里面有了两个相同标识但是是不同实体所致。解决方案有...

    hibernate常见错误解决方案

    本文将针对几个常见的Hibernate异常进行详细解析,并提供相应的解决策略。 #### 1. **DOM4J DocumentException: Invalid byte 2 of 2-byte UTF-8 sequence** **异常描述:** 当Hibernate尝试解析一个XML配置文件时...

    项目异常汇总

    #### 七、No Row with the given identifier exists **异常描述:** 操作数据库时,尝试访问不存在的数据行。 **异常信息:** 错误提示通常会明确指出所查找的数据行不存在。 **异常原因:** 数据库中不存在指定...

    hibernate错误汇总

    错误八:Exception in thread "main" org.hibernate.HibernateException: More than one row with the given identifier was found: 1, for class: org.model.User 错误原因:这个错误表示在尝试获取主键为1的实体...

    Hibernate映射导致的几个异常

    标题与描述概述的知识点主要集中在Hibernate映射过程中可能遇到的各种异常情况,这涉及到数据库与对象模型之间的映射问题,以及Hibernate...理解和掌握这些异常的原因及其解决方法对于高效使用Hibernate框架至关重要。

    hibernate常见问题及处理.doc

    5. `a different object with the same identifier value was already associated with the session` 这个异常表明在同一个Hibernate Session中存在两个具有相同标识但实际是不同对象的情况。处理方法有: - 使用`...

    hibernate错误解决方案

    本文将针对几个常见的Hibernate错误进行深入分析,并提供相应的解决方法。这些错误包括但不限于 `org.springframework.orm.ObjectRetrievalFailureException`、`org.springframework.beans.factory....

    精心整理的ssh2 一些错误问题的记录(推荐)

    ### 错误七:No row with the given identifier exists 这意味着根据提供的标识符查询数据库时,没有找到任何行。检查SQL查询和标识符是否正确,以及数据库中是否存在预期的数据。 ### 错误八:No result defined ...

    apktool_AndResGuard:修复apktool打包出现No resource found...

    No resource found that matches the given name..... ....... 使用apktool-2.0.3也可以回编译,但是比如微信回编译后会增加到110M左右,很不友好。 而使用apktool-2.3.2和原包大小一样,65M左右。 基于apktool

    Hibernate Tutorial 03 (Object Identifier).pdf

    **解决方法**: 为了避免这个问题,我们应该使用一种自动生成的方式来为持久化对象分配标识符。这种方式下的标识符没有业务意义,因此不会被修改。为了实现这一目标,我们首先需要对`Book`类进行修改,添加一个名为`...

    hibernate.properties

    ## to use the second-level cache with JTA, Hibernate must be able to obtain the JTA TransactionManager #hibernate.transaction.manager_lookup_class org.hibernate.transaction....

    hibernate 重点知识原创

    【hibernate 重点知识】 一、hibernate 简介 Hibernate 是一个流行的 Java 应用程序框架,主要用于简化对象关系映射(ORM)的过程。它允许开发者使用面向对象的方式来操作数据库,通过自动映射数据库表为 Java ...

    undeclared identifier(解决方案).md

    undeclared identifier(解决方案).md

    不常用的TParser类解析(文本文件中相关字符串)

    Raises an EParserError exception with the given message procedure ErrorFmt(); Raises an EParserError exception and formats the message. procedure ErrorStr(); Raises an EParserError exception with ...

    Hibernate5.0用户手册中文版本

    Hibernate 是一个基于 Java 的关系型持久层框架,它提供了一个高效、灵活的解决方案来存储和检索数据。本手册是 Hibernate 5.0 的中文版本,旨在帮助开发者快速掌握 Hibernate 的使用和配置。 Architecture(体系...

    hibernate配置参数大全

    ### Hibernate配置参数详解 #### 一、数据库连接配置(JDBC) 在Hibernate中,与数据库交互的第一步就是正确地配置数据库连接。以下是一些关键的配置参数及其含义: 1. **`hibernate.connection.driver_class`**...

    Hibernate 参数配置详解

    ### Hibernate 参数配置详解 #### 一、概述 Hibernate 是一款流行的 Java 持久层框架,它通过提供一套丰富的 API 和配置选项来简化数据库访问。本文档将深入探讨 Hibernate 的核心配置参数及其功能,帮助开发者更...

    Hibernate4

    ### Hibernate4:深入理解对象关系映射框架 #### 一、Hibernate概述 **Hibernate** 是一个面向 Java 领域的持久化框架,它属于 ORM(Object-Relational Mapping,对象关系映射)的一种实现方式。所谓“持久化”,...

    Hibernate+中文文档

    4.1.1. 实现一个默认的(即无参数的)构造方法(constructor) 4.1.2. 提供一个标识属性(identifier property)(可选) 4.1.3. 使用非final的类 (可选) 4.1.4. 为持久化字段声明访问器(accessors)和是否可变的...

Global site tag (gtag.js) - Google Analytics