gpt4 book ai didi

java - 阻止 EntityManager 操作

转载 作者:行者123 更新时间:2023-12-04 04:15:22 24 4
gpt4 key购买 nike

我不想执行阻塞操作。

Caused by: java.lang.IllegalStateException: You have attempted to perform a blocking operation on a IO thread. This is not allowed, as blocking the IO thread will cause major performance issues with your application. If you want to perform blocking EntityManager operations make sure you are doing it from a worker thread.

有人知道如何解决这个问题吗?我只有简单的操作。返回 10 行的单个 findAll 请求。我把 Tansactional 从不我仍然有问题。我正在使用带有简单实体的派头。

   @GET
@Path("/type")
@Produces(MediaType.APPLICATION_JSON)
@Transactional(Transactional.TxType.NEVER)
public Response get() {
return AlertType.listAll();
}
public class AlerteType extends PanacheEntityBase 
{

@Column(name="ATY_ACTIVE")
private String active;

@Column(name="ATY_ID")
@Id
private Long oraId;

@Column(name="ATY_TYPE")
private String type;
}

谢谢

最佳答案

如果你想继续使用非响应式代码,你可以在方法get()上使用@Blocking注解。它将卸载工作线程(而不是一个 IO 线程)上的计算。

Quarkus 对 IO 线程非常挑剔,你不能阻止它们。如果你有类似数据库调用(或任何远程调用)的东西,那就是阻塞。所以你不能在 IO 线程中完成它。

更多信息:

关于java - 阻止 EntityManager 操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60778512/

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