概述
实体类中(一定要声明构造函数与dao层相等)
@Entity
@Data
@Table(name = "表名")
public class xx{
@Id
private String id;
private String name;
private String password;
//重点需要这个构造函数与dao层相对应
public JobDataSource(String id, String name,String password) {
this.id = id;
this.name = name;
this.password = password;
}
}
dao层
@Query(value = "select new com.xxx.entity.类名(id,name,password)"+
"from 类名 where id =?1")
类名 findByDataid(String id);
最后
以上就是纯真海燕为你收集整理的springBootjpa中@Query返回自定义对象类型的全部内容,希望文章能够帮你解决springBootjpa中@Query返回自定义对象类型所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复