Illegal attempt to map a non col

2016-12-20  本文已影响0人  Slience无言

转自: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<>();
上一篇 下一篇

猜你喜欢

热点阅读