- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在将 micronaut 数据合并到现有的 micronaut 项目中(作为升级的一部分),我遇到了一些有关延迟获取相关集合(具有 OneToMany
关系)的问题。
我有以下实体结构:
@Data
@Entity
@NoArgsConstructor
@AllArgsConstructor
@Builder(toBuilder = true)
public class Merchant implements Serializable {
@Id private String name;
private String displayName;
private String staticSiteAddress;
private String emailFromAddress;
private String emailFromName;
private String etmEmailFromAddress;
private String etmEmailFromName;
private String phone;
private String username;
@Embedded private PasswordHash password;
@ToString.Exclude
@EqualsAndHashCode.Exclude
@OneToMany(mappedBy = "merchant", fetch = FetchType.LAZY)
@Builder.Default
private Set<MerchantStore> stores = new HashSet<>();
@ToString.Exclude
@EqualsAndHashCode.Exclude
@OneToMany(mappedBy = "merchant", fetch = FetchType.LAZY)
@Builder.Default
private Set<CustomWebLink> customWebLinks = new HashSet<>();
@ToString.Exclude
@EqualsAndHashCode.Exclude
@OneToMany(mappedBy = "merchant", fetch = FetchType.LAZY)
@Builder.Default
private Set<LoyaltyPlan> loyaltyPlans = new HashSet<>();
@ToString.Exclude
@EqualsAndHashCode.Exclude
@OneToMany(mappedBy = "merchant", fetch = FetchType.LAZY)
@Builder.Default
private Set<MerchantPref> merchantPrefs = new HashSet<>();
}
有了手头,我可以使用以下存储库方法毫无问题地获取第一级相关实体(即 merchantPrefs
):
@NonNull
@Override
@Cacheable("merchant")
@Join(value = "stores", type = Join.Type.LEFT_FETCH)
@Join(value = "customWebLinks", type = Join.Type.LEFT_FETCH)
@Join(value = "merchantPrefs", type = Join.Type.LEFT_FETCH)
@Join(value = "loyaltyPlans", type = Join.Type.LEFT_FETCH)
Optional<Merchant> findById(@NonNull @NotNull String s);
但是,当我尝试从该实体获取最内层的集合时,例如 awards
:
@Data
@Entity
public class LoyaltyPlan implements Serializable {
@EmbeddedId private LoyaltyPlanID id;
@ToString.Exclude
@EqualsAndHashCode.Exclude
@ManyToOne(fetch = FetchType.LAZY)
@MapsId("merchant")
@JoinColumn(name = "merchant", nullable = false)
private Merchant merchant;
private String displayName;
private String emailFromName;
private String emailFromAddress;
private String uniqueId;
private boolean defaultPlan;
private float pointsFactor;
private boolean hasGiftCards;
private boolean hasLoyaltyCards;
private boolean usesName;
private boolean hasEmail;
private boolean hasCellPhone;
private boolean needsGiftCards;
private boolean needsLoyaltyCards;
private boolean needsName;
private boolean needsEmail;
private boolean needsCellPhone;
private int signupBonus;
private int closingAwardThreshold;
private int maxPointsPerOrder;
private int minPricePerOrder;
private int recentHistoryDays;
private int expiringCouponReminderDays;
@ToString.Exclude
@EqualsAndHashCode.Exclude
@OneToMany(mappedBy = "loyaltyPlan", fetch = FetchType.LAZY)
private List<LoyaltyPlanAward> awards;
}
我得到一个LazyInitializationException
。
org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role: fts.marketing.entities.plan.LoyaltyPlan.awards, could not initialize proxy - no Session
at org.hibernate.collection.internal.AbstractPersistentCollection.throwLazyInitializationException(AbstractPersistentCollection.java:606)
at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:218)
at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:585)
at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:149)
at org.hibernate.collection.internal.PersistentBag.iterator(PersistentBag.java:387)
at java.base/java.lang.Iterable.forEach(Iterable.java:74)
at fts.marketing.TestController.doSomething(TestController.java:29)
at fts.marketing.$TestControllerDefinition$Intercepted.$$access$$doSomething(Unknown Source)
at fts.marketing.$TestControllerDefinition$$exec1.invokeInternal(Unknown Source)
at io.micronaut.context.AbstractExecutableMethod.invoke(AbstractExecutableMethod.java:146)
at io.micronaut.aop.chain.MethodInterceptorChain.proceed(MethodInterceptorChain.java:73)
at io.micronaut.transaction.interceptor.TransactionalInterceptor.intercept(TransactionalInterceptor.java:134)
at io.micronaut.aop.chain.MethodInterceptorChain.proceed(MethodInterceptorChain.java:82)
at fts.marketing.$TestControllerDefinition$Intercepted.doSomething(Unknown Source)
at fts.marketing.$TestControllerDefinition$$exec1.invokeInternal(Unknown Source)
at io.micronaut.context.AbstractExecutableMethod.invoke(AbstractExecutableMethod.java:146)
at io.micronaut.context.DefaultBeanContext$4.invoke(DefaultBeanContext.java:474)
at io.micronaut.web.router.AbstractRouteMatch.execute(AbstractRouteMatch.java:312)
at io.micronaut.web.router.RouteMatch.execute(RouteMatch.java:118)
at io.micronaut.http.server.netty.RoutingInBoundHandler.lambda$buildResultEmitter$10(RoutingInBoundHandler.java:1369)
at io.reactivex.internal.operators.flowable.FlowableDefer.subscribeActual(FlowableDefer.java:35)
at io.reactivex.Flowable.subscribe(Flowable.java:14935)
at io.reactivex.Flowable.subscribe(Flowable.java:14882)
at io.micronaut.http.server.context.ServerRequestContextFilter.lambda$doFilter$0(ServerRequestContextFilter.java:62)
at io.reactivex.internal.operators.flowable.FlowableFromPublisher.subscribeActual(FlowableFromPublisher.java:29)
at io.reactivex.Flowable.subscribe(Flowable.java:14935)
at io.reactivex.Flowable.subscribe(Flowable.java:14885)
at io.micronaut.http.server.netty.RoutingInBoundHandler.lambda$buildExecutableRoute$6(RoutingInBoundHandler.java:1074)
at io.micronaut.web.router.DefaultUriRouteMatch$1.execute(DefaultUriRouteMatch.java:80)
at io.micronaut.web.router.RouteMatch.execute(RouteMatch.java:118)
at io.micronaut.http.server.netty.RoutingInBoundHandler.handleRouteMatch(RoutingInBoundHandler.java:698)
at io.micronaut.http.server.netty.RoutingInBoundHandler.channelRead0(RoutingInBoundHandler.java:554)
at io.micronaut.http.server.netty.RoutingInBoundHandler.channelRead0(RoutingInBoundHandler.java:1
此外,这似乎是一个偶发问题,因为有时相同的代码似乎工作正常。我不太确定哪里出了问题,我想我已经正确地建立了关系模型,因为在迁移到 micronaut-data
之前这些关系都很好。
我不知道我在这里做错了什么,非常感谢任何帮助来解决这个问题。
最佳答案
在 Micronaut 中,OpenSessionInView 的概念不存在。似乎您正在尝试在事务已关闭时访问该关系。看看这个:https://micronaut-projects.github.io/micronaut-sql/latest/guide/index.html#_understanding_lazyinitializationexception
解决方案:
关于java - 延迟获取相关实体的 Micronaut 数据问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65828085/
第一段代码工作正常,并给出了我需要的结果。我现在想做的是让它在 'as num' 上返回 3 个数字值对于“as num”上的 3 个不同值,对于同一列上的 3 个不同位置 SELEC
我想分析一些数据以编写定价算法。以下日期可用: 我需要三个变量/维度的函数/相关因子,它显示三个维度(pers_capacity、卧室数量、浴室数量)增长时中位数(价格)的变化。例如Y(#pers_c
正如标题所说 - 我的 Sprite Kit 游戏时不时地在后台崩溃,总是出现此错误 - Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Sub
假设我尝试保存以下数据,并且Songs模型的name属性上设置了Phalcon \ Mvc \ Model \ Validator \ PresenceOf验证器 // Get an existing
我有一个 if 控件,如下所示; if (Directory.Exists(System.IO.Path.Combine(systemPath, "Reports", companyName))
有人可以告诉我我们使用 ReadLine() 从文件 (.txt) 中读取特定行吗?现在我想读取文件的全部内容(不仅仅是第一行)。为此我需要使用什么方法。我用谷歌搜索了很多,但找不到解决方案。 我的代
我相信在大学时我用从 C 派生的语言为 FPGA 编写了一个程序。我了解 VHDL 和 verilog 等语言。但是,我不明白的是程序员在使用哪个方面有多少选择?它依赖于FPGA吗?我将使用 Xili
我有一个 if 控件,如下所示; if (Directory.Exists(System.IO.Path.Combine(systemPath, "Reports", companyName))
如何在运行时更改 Dashcode (Javascript) 中图像对象的源? 我试过: var image = document.getElementById("image").object;ima
我有几个相互关联的类,它们将被多种不同的算法使用 例子: struct B; struct A { B* parent; }; struct B { std::vector child
我正在开发一个网站,用户在客户收到的表中输入金额,如果任何客户没有提供分期付款(金额),则用户不会在表中输入任何金额,并且用户希望获取违约者的信息客户以10天为基础。所以我的问题是应该定义什么表和属性
我试图从上一个条目中选择一个值,并每次将该数字加一。我让它工作到选择当前条目值(默认 1000)并递增 1 并重新插入该值(因此每次最终都是 1001)。我需要它来选择该字段的最后一个条目,这样它将变
我不擅长“制作”查询。假设这是我的数据库: artist pics ------------------- -
最近,我要为我的网站做一个即时通知系统。我听说 COMET 在这种情况下必不可少。 我已经搜索 PHP 和 Comet 一段时间了,但是,我发现的指南和文章似乎只是循环中的 ajax 请求。例如,有一
我正在开发一款 iOS 游戏,我希望 clown 在场景外生成,然后向下移动。我的想法是全部创建它们,并将它们以 360 像素的距离放置在不可见的场景中。 像这样: SKSpriteNode *clo
我有以下子订单表。 mysql> select * from suborder; +-------------+------------------+ | order_state | bookin
这可能是一个有点初学者的问题,但考虑到在 Java 中调试编码是相当相关的:什么时候编码与 String 对象相关? 假设我有一个要保存到文件中的字符串对象。 String 对象本身是否使用某种我应该
首先我想说我是 CPP 的新手(我从 cpp11 开始):)考虑以下实体:学生(名字+姓氏)和组(描述+更多学生)。我在 C++ 中创建了以下 2 个类: class Student { privat
我正在尝试在单击该复选框时同步更新我的数据库。我决定使用 aJax,但它似乎无法识别 ajax。 代码:将成为 Switch_Active(this.id) 函数的元素 ... Deactivat
我正在创建一个菜单。菜单如下。 $('.category').mouseover(function() { $(this).removeClass('category').addClass('cate
我是一名优秀的程序员,十分优秀!