我有一个复杂的本机查询,我正在尝试将其结果映射到非实体 DTO 类。我正在尝试使用JPA
's SqlResultSetMapping
withConstructorResult
我的 DTO 课程
@Data
public class Dto {
private Long id;
private String serial;
private Long entry;
private int numOfTasks;
}
我的实体类,它具有我将调用此本机查询结果的存储库接口。
@SqlResultSetMapping(
name = "itemDetailsMapping",
classes = {
@ConstructorResult(
targetClass = Dto.class,
columns = {
@ColumnResult(name = "ID"),
@ColumnResult(name = "SERIAL"),
@ColumnResult(name = "ENTRY"),
@ColumnResult(name = "TASKS")
}
)
}
)
@NamedNativeQuery(name = "getItemDetails", query = "complex query is here", resultSetMapping = "itemDetailsMapping")
@Entity
@Data
public class Item {}
存储库
@Repository
public interface ItemRepository extends JpaRepository<Item, Long> {
...
List<Dto> getItemDetails();
}
当我调用getItemDetails()
fromItemRepository
我有以下错误:
org.springframework.data.mapping.PropertyReferenceException:找不到类型 Item 的属性 itemDetails
SqlResultSetMapping
使用和ConstructorResult
解决此问题的正确方法是什么。
任何帮助,将不胜感激。