6

我有一个复杂的本机查询,我正在尝试将其结果映射到非实体 DTO 类。我正在尝试使用JPA's SqlResultSetMappingwithConstructorResult

我的 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 解决此问题的正确方法是什么。

任何帮助,将不胜感激。

4

1 回答 1

5

要使用命名查询,命名查询的名称必须以实体名称作为前缀:

@NamedNativeQuery(name = "Item.getItemDetails", 
                 query = "complex query is here", resultSetMapping = "itemDetailsMapping")

那么接口方法必须与没有前缀的命名查询同名:

List<Dto> getItemDetails();

-

在参考文档https://docs.spring.io/spring-data/jpa/docs/current/reference/html/#jpa.query-methods.named-queries中阅读有关 Spring Data JPA 和命名查询的更多信息

于 2019-03-04T10:05:15.770 回答