Could not get constructor for org.hibernate.persister.entity.SingleTableEntityPersister 实体类的修改错误

在进入Customer实体类修改时候,没有删除,进行修改的,导致和映射文件不匹配


	private String upload;
	public String getUpload() {
		return upload;
	}
	public void setUpload(String upload) {
		this.upload = upload;
	}直接在此基础上进行修改的名称 所以不对
 
private String filePath;
	public String getFilePath() {
		return filePath;
	}
	public void setFilePath(String filePath) {
		this.filePath = filePath;
	}

//应该把错误的直接删除 然后重新写


猜你喜欢

转载自blog.csdn.net/lxiansheng001/article/details/80560194