我创建了一个jaxrs资源,如下所示:
@Path(ReferenceEndpoint.PATH)
public interface ReferenceResource {
@GET
public Response download(
@PathParam(ReferenceEndpoint.Download.Parameters.ID)
String id
);
}
我在挣扎 @Stateless
以及 RequestScoped
注解。
javax.ejb.Stateless;
javax.enterprise.context.RequestScoped;
我知道它们代表什么,但我不太明白为什么我在那里的一些代码中看到它们。
我是说,我看了那里,有时我看到 @Stateless
,但其他时候, @RequestScoped
,有时甚至是其中的一个。
有灯光吗?
暂无答案!
目前还没有任何答案,快来回答吧!