gpt4 book ai didi

sql - 映射用 Hibernate 返回表的 postgres 函数

转载 作者:行者123 更新时间:2023-11-29 13:42:19 28 4
gpt4 key购买 nike

我搜索了整个 stackoverflow 和其他站点,但我不知道如何在 Spring 应用程序中使用 Hibernate 映射从 postgres 函数返回的表。

我什至不确定 postgres 函数的返回类型表是否可以以某种方式与 MyCustomTable 匹配。

我想做的是使用 hibernate 从 spring 应用程序调用 postgres 函数(存储过程)。

我有这个 postgres 函数

CREATE OR REPLACE FUNCTION func99(type text,start_date TIMESTAMP, end_date TIMESTAMP) RETURNS TABLE(
some_day TIMESTAMP,
tot_requests BIGINT)
AS $$
BEGIN
RETURN QUERY
SELECT t1.first_date, COUNT(*) FROM table1 t1
WHERE t1.request_type = type and t1.first_date > start_date and t1.first_date < end_date;
END;
$$ LANGUAGE PLpgSQL;

Controller

@GetMapping("/users/{username}/func99")
public List<MyCustomTable> getResultsFromFunc99(@PathVariable(value = "username") String username,
@CurrentUser UserPrincipal currentUser,
@RequestParam(value = "service_type") String type,
@RequestParam(value = "start_date") Timestamp startDate,
@RequestParam(value = "end_date") Timestamp endDate){

return queryService.getResultsFromFunc99(username, currentUser, type, startDate, endDate);
}

服务

public List<MyCustomTable> getResultsFromFunc99(String username, UserPrincipal currentUser, String type, Timestamp startDate, Timestamp endDate) {

User user = userRepository.findByUsername(username)
.orElseThrow(() -> new ResourceNotFoundException("User", "username", username));


return return incidentRepository.func99(type, startDate, endDate);

存储库

@Procedure(procedureName = "func99")
List<MyCustomTable> func99(String type, Timestamp startDate, Timestamp endDate);

实体

@Entity
@NamedStoredProcedureQuery(
name = "func99",
procedureName = "func99",
parameters = {
@StoredProcedureParameter(name = "type", mode = ParameterMode.IN, type = String.class),
@StoredProcedureParameter(name = "start_date", mode = ParameterMode.IN, type = Timestamp.class),
@StoredProcedureParameter(name = "end_date", mode = ParameterMode.IN, type = Timestamp.class)
}
)
@Table(name = "table1")
public class MyCustomTable {...}

当 postgres 函数返回一个整数时,我可以让它工作。我可以做些什么来映射来自 postgres 函数的表返回以及如何将它与 Hibernate 集成?

最佳答案

这是我用于解决类似问题的解决方法,但它可能有效。

像这样定义一个 SqlResultSetMapping:

@SqlResultSetMapping(
name = "MyCustomTableMapping",
entities = @EntityResult(entityClass = MyCustomTable.class)
)

然后将此参数更改为您的 NamedStoredProcedureQuery 注释:

resultSetMappings = "MyCustomTableMapping"

我将这种技术与 NamedNativeQueries 结合使用,以确保 Hibernate 不会像实际实体那样跟踪它们的变化。让我和我的同事不必记住 detach 大量实体。几乎每一个关于如何使用与表格不对应的搜索结果的教程都会给你留下这个问题并认为它没问题。

关于sql - 映射用 Hibernate 返回表的 postgres 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53481836/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com