我正在使用Spring
+,Hibernate
并且在特殊情况下,Entity
由于查询,我需要获取(列表)非对象。
我决定使用@ConstructorResult
in,@SqlResultSetMapping
并在其中引用此映射@NamedNativeQuery
,如此处和此处所述。
但是,在所有使用命名本机查询的示例中,它们都EntityManager
通过获取实例@PersistenceContext
并对其进行调用createNativeQuery
,从而为该调用提供name
of
@NamedNativeQuery
参数,如该答案所示。
如何将存储库中声明的方法映射interface
到特定对象@NamedNativeQuery
?我的尝试是使用EntityName.MethodNameInRepository
或MethodNameInRepository
作为name
的@NamedNativeQuery
,但没有运气。
这是我的简化代码:
@Entity(name = "AdDailyData")
@SqlResultSetMapping(
name="RevenueByAppAndDayMapping",
classes=@ConstructorResult(
targetClass=RevenueByAppAndDay.class,
columns={@ColumnResult(name="country_code"),
@ColumnResult(name="revenue", type=Double.class),
@ColumnResult(name="currency")}))
@NamedNativeQuery(
name="AdDailyData.aggregateRevenue",
query="SELECT country_code, sum(earnings) as revenue, currency "
+ "FROM ad_daily_data, pseudo_app, app "
+ "WHERE ad_daily_data.pseudo_app_id=pseudo_app.id AND pseudo_app.app_id=app.id AND app.id=:appId and ad_daily_data.day = :day "
+ "GROUP BY country_code, currency "
+ "ORDER BY country_code ASC",
resultSetMapping="RevenueByAppAndDayMapping")
public class AdDailyDataEntity {
// fields, getters, setters etc.
public static interface Repository extends JpaRepository<AdDailyDataEntity, Long> {
public List<RevenueByAppAndDay> aggregateRevenue(@Param("appId") long appId, @Param("day") LocalDate day);
}
}
这是我的非Entity
班级。
public class RevenueByAppAndDay {
private String countryCode;
private Double earnings;
private String currency;
public RevenueByAppAndDay(String countryCode, Double earnings, String currency) {
this.countryCode = countryCode;
this.earnings = earnings;
this.currency = currency;
}
public String getCountryCode() {
return countryCode;
}
public Double getEarnings() {
return earnings;
}
public String getCurrency() {
return currency;
}
}
任何帮助都将受到高度赞赏。
编辑: 堆栈跟踪的结尾如下:
Caused by: org.springframework.data.mapping.PropertyReferenceException: No property aggregateRevenue found for type AdDailyDataEntity!
需要将name
值@NamedNativeQuery
设置为"AdDailyDataEntity.aggregateRevenue"
。第一部分(点前)需要与实体类名称匹配。
我使用的是Spring,我有一个特殊情况,需要通过查询获得非实体对象的列表。 我决定在SQLResultsMapping中使用ConstructorResult,并参考这里和这里提到的NamedNativeRequesty中的映射。 然而,在所有使用命名本机查询的示例中,它们通过PersistenceContext获取EntityManager实例,并在其上调用createNativeQuery,
这是我的代码-
我正在尝试创建一个Azure Function(. NET核心)以从存储帐户检索SaS,并且难以理解为什么我无法访问存储。 函数签名: 索引方法“GetBlobSaS”Microsoft时出错。蔚蓝色的网络作业。主机:无法将参数“storage”绑定到类型StorageAccount。确保绑定支持参数类型。如果您使用的是绑定扩展(例如Azure Storage、ServiceBus、Timers等
问题内容: 我有一个JList和ArrayList。如何将arraylist中的数据绑定到jlist.Ares有替代方法吗? 如何绑定以上代码。现在代码给出错误。 问题答案: 您无需克隆ArrayList。只需调用toArray()
问题内容: 我们有一个普通的独立spring应用程序,需要将jdbc数据源放在jndi中。(我们使用jboss treecache,它需要数据源位于jndi中)。 一些谷歌搜索人员发现了大多数使用Spring的jndi查找示例,其中已经在jndi中放置了一个对象(通过tomcat或应用服务器等),但是我们需要另外的方法:我有一个简单的数据源Spring bean,我将其注入到其他服务中,但我无法将
我正在使用匕首2,我有一个定义如下的: 这是FYViewModel的: 但是,变量始终为空。 如何使用匕首2将Repositroy注入我的ViewModel?