转载

「Mybatis笔记」 Mybatis 的踩坑之路(集中更新)

「Mybatis笔记」 Mybatis 的踩坑之路(集中更新)

原文地址:https://www.miaoroom.com/code/note/mybatis-debug-notes.html

出处:喵容

本文会零零碎碎的更新自己在学习 JavaMybatis 碰到的问题和解决办法,希望这些踩坑的历程能给需要的你带来帮助。

由于文章主要为DAO层的内容,所以本文同时也会收录部分 HibernateSpringData 的内容,而不仅仅是只有Mybatis。

1. org.hibernate.AnnotationException: No identifier specified for entity:

private Integer categoryId;

这个错误看上去是这张表没有主键,在使用hibernate的映射表的时候entity类是必须要主键的,否则就会报出这个异常。所以解决如下,添加自增的ID主键:

@Id
@GeneratedValue
private Integer categoryId;

如果我们已经配置了@ID,还会报这个错误是因为import错包了,错误的使用了org.springframework.data.annotation.Id包。

当我们使用@Entity的时候,提示我们Entity过时,被划了横线,是因错误的引用了org.hibernate.annotations.Entity包,这里应该使用JPA的注解javax.persistence.Entity,而不是hibernate的。

原文  https://www.miaoroom.com/code/note/mybatis-debug-notes.html
正文到此结束
Loading...