springdataJpa对无主键表或视图查询的支持
2021-01-27 01:13
标签:int pre font address 实体类 color value nbsp 定义 因为jpa在映射实体是需要一个id,所以我们的实体类必须至少需要一个id字段,当对无主键表或视图查询时,我们可以定义一个空的@id即可。 示例如下 实体: @Query(value = "select s from Student s where age in (?1)) springdataJpa对无主键表或视图查询的支持 标签:int pre font address 实体类 color value nbsp 定义 原文地址:https://www.cnblogs.com/Williamwen/p/12849598.html@Data
@Entity
@Table(name="Student")
public class Student {
private Long id;
private String name;
private int age;
private String address;
}
接口:
public List
文章标题:springdataJpa对无主键表或视图查询的支持
文章链接:http://soscw.com/index.php/essay/47520.html