Bootstrap

Caused by: org.hibernate.MappingException: Could not determine type for

问题:

Caused by: org.hibernate.MappingException: Could not determine type for: com.cloudage.membercenter.entity.Article, at table: Comment, for columns: [org.hibernate.mapping.Column(article)]

解决办法

在BaseEntity 里面,由于id前面的声明

@Id
	@GeneratedValue(strategy=GenerationType.IDENTITY)


放在了Integer id;的前面;


而其他的@Id等等那些都是放在

getId()


等等方法的前面,

所以,由于位置不一样而导致;


统一放在getXXX()方法前面 或者统一放在 Integer XXX ; 前面即可;


;