美文网首页
Illegal attempt to map a non col

Illegal attempt to map a non col

作者: Slience无言 | 来源:发表于2016-12-20 09:51 被阅读0次

转自:http://blog.sina.com.cn/s/blog_8f4353ce01011j15.html

hibernate出现Illegal attempt to map a non collection as a @OneToMany, @ManyToMany or @CollectionOfElements:com.model.user.course
的原因可能是user实体类中course这个列表不是List类型的,可能是它的子类型比如说ArrayList,如果要把一个ArrayList列表OneToMany应该这样

List<Course> course = new ArrayList<>();

相关文章

网友评论

      本文标题:Illegal attempt to map a non col

      本文链接:https://www.haomeiwen.com/subject/zkqrmttx.html