- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我正在学习使用 JAX-RS 进行一些 Restful api 开发,但我的资源类存在问题。
我的理解是我的资源类应该是 RequestScoped,但是,当它是 RequestScoped 时,我对实体管理器的持久方法的调用会引发 TransactionRequiredException。
如果我将我的资源类更改为无状态,那么一切都很好,实体管理器可以毫无问题地持续存在。
我还是 JavaEE 的新手,想知道为什么会发生这种情况,以及 @Stateless 注释的作用是什么使持久性上下文能够正确注入(inject)。我还想知道 JAX-RS 资源类是无状态的而不是 RequestScoped 是否有任何问题,因为我见过的大多数教程都有它们。
我在下面包含了一些示例代码来说明。
@Path("Things")
//@Stateless //works just fine when em.persist() is called
@RequestScoped //throws transactionrequiredexception when em.persist() is called
public class ThingsResource{
@PersistenceContext(unitName = "persistenceUnitName")
EntityManager em;
public ThingsResource() { }
@POST
@Produces(MediaType.APPLICATION_JSON)
public Response postThing(ThingDTO thing){
ThingEntity newThing = new ThingEntity(thing);
em.persist(newThing);
em.flush();
return Response.created(new URI("/" + newThing.getId()).build();
}
}
最佳答案
马蒂亚斯是正确的。
@Stateless 注释 bean 是一个 EJB,默认提供 Container-Managed-Transactions .如果 EJB 的客户端没有提供,CMT 默认会创建一个新事务。
Required Attribute If the client is running within a transaction and invokes the enterprise bean’s method, the method executes within the client’s transaction. If the client is not associated with a transaction, the container starts a new transaction before running the method.
The Required attribute is the implicit transaction attribute for all enterprise bean methods running with container-managed transaction demarcation. You typically do not set the Required attribute unless you need to override another transaction attribute. Because transaction attributes are declarative, you can easily change them later.
在最近的java-ee-7 tuturial在 jax-rs 上,Oracle 有使用 EJB (@Stateless) 的示例。
... the combination of EJB's @javax.ejb.Asynchronous annotation and the @Suspended AsyncResponse enables asynchronous execution of business logic with eventual notification of the interested client. Any JAX-RS root resource can be annotated with @Stateless or @Singleton annotations and can, in effect, function as an EJB ..
在这种情况下,@RequestScoped 与 @Stateless 之间的主要区别在于容器可以将 EJB 池化并避免一些昂贵的构造/销毁操作,这些操作可能需要在每个请求上构造的 bean 上进行。
关于java - @Stateless 与 @RequestScoped,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20558125/
我已经用 Java 创建了无状态 session bean。现在我想调用另一个无状态 session bean 的方法。我的代码中缺少一些东西。通常调用方法的方式不适合这里。在另一个无状态 sessi
我的组件中有以下代码,我希望无状态组件能够访问这部分代码: 主要成分: function createApp(store, communityIds) { const App = React.crea
最近,Facebook 发布了一种名为 Hacklang 的新语言,它通过 HHVM 编译为机器码。 所以我想知道,Hacklang 仅仅是一种状态语言吗? 谢谢。 最佳答案 PHP 是无状态的,除非
我花了一整天的时间了解什么是无状态架构。我读了很多帖子和答案,比如 Can My Web App Implement User Login and Remain Stateless? Pros and
我正在尝试使用 Hibernate 无状态 session 进行批量插入 class Book { String title; String author; Double pr
我正在尝试过滤 (javax.servlet.Filter) 我所有 Web 服务端点上的所有传入 SOAP 请求。这些 Web 服务是从 @Stateless EJB 创建的并使用 Message
我正在关注 EJB cookbook ,来自 packt,使用以下代码: package packt; import javax.ejb.Stateless; import javax.ejb.Loc
我遇到了内存泄漏问题,因为 EJB 没有从池中删除。 ejb 是 3.0 并且是无状态的。 In my jboss jmx-console 4.3, the statistics of a parti
我目前正在创建一个 EJB3 数据访问类来处理我的 Java EE 6 应用程序中的所有数据库操作。现在,由于 Java EE 6 提供了新的 ApplicationScoped 注释,我想知道我的
我正在学习使用 JAX-RS 进行一些 Restful api 开发,但我的资源类存在问题。 我的理解是我的资源类应该是 RequestScoped,但是,当它是 RequestScoped 时,我对
我听说“ RESTful API 应该是无状态的。所有状态信息都应该保存在客户端 ”。 但是当我从网页发出 AJAX 调用时,我注意到 session ID cookie 总是被发送到服务器。使用该
Laravel Socialite有一个“无状态”模式,它禁止将任何内容存储到 session 中。从阅读源代码来看,它并没有做任何不同的事情——它只是不存储或检索这些值。 作为其中的一部分,它 as
我正在维护一些运行良好的旧 JEE 代码,但正在使用一些静态帮助器类,其中实体管理器从调用 EJB 的方法中传递,如下所示: public class StaticHelper { publi
我正在关注 this tutorial它还使用 EJB: package exercise1; import java.util.Random; import javax.ejb.Stateless;
我想知道的是我是否从正确的角度接近这个问题。 我有一个我正在构建的 asp.net 应用程序。我正在使用 Masterpage 来查看应用程序的整体外观(您可以在下面看到代码)。 我想让菜单系统使用像
我想知道为什么我们在使用 TransactionAttributeType 时要使用无状态注释,如下所示: @TransactionAttribute(TransactionAttributeType
我正在用 golang 构建一个应用程序,我希望它具有容错能力。我研究了不同的算法,如 RAFT 和 Paxos 以及它们在 golang 中的实现(etcd 的 raft,hashicorp 的 r
我正在尝试使用 React Native 创建一个组件,如下所示: export class IndicatorOverlay extends Component { render() {
我在 bean 中有一些代码用于监视连接句柄: @Stateless public class MyClass { private CloseableHttpAsyncClient devic
我习惯于为服务、DAO 或 Controller 对象创建 Spring bean 作为单例。好吧,这对我来说似乎很自然。现在我的一个同事喜欢把所有这样的对象都做成原型(prototype)。 反对的
我是一名优秀的程序员,十分优秀!