Hibernate 报错org.hibernate.PropertyAccessException: IllegalArgumentException(已解决)

无聊想搭建一个项目,练手,做点小功能就一个卡在这个问题上

org.hibernate.PropertyAccessException: IllegalArgumentException occurred calling getter of com.lssrc.pams.model.User.userId

 具体报错是这个,查看半天,原来是直接从别处拷贝过来的配置文件,





	
        
        
            
        
	    
	    	
	    
		
			
		
    

 上面的ID定义出了问题,改成

java.lang.Integer

 就好了,或者改成

int

 也是OK的

 

你可能感兴趣的:(Hibernate 报错org.hibernate.PropertyAccessException: IllegalArgumentException(已解决))