ApplicationBeans 方法是否被缓冲?
我有一个 JSF 2.0 WebApp,它有一个应用程序 bean,它运行一种绘制数字的方法。我不希望同时运行 2 个请求,所以我的问题是:我应该实现任何类型的信号量(以及如何实现)或者方法是否已由 ApplicationBean 缓冲?
I have a JSF 2.0 WebApp that has one application bean that runs a method for drawing a number for example. I don't want 2 requests to run at the same time so my question is: should I implement any kind of semaphore (and how) or are methods already buffered by the ApplicationBean?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些方法绝对不是“缓冲”的(我认为您正在寻找的词是
同步
)。换句话说,应用程序范围的托管 Bean 不是线程安全的。您要么需要使方法同步,要么使用 @Singleton @Named bean 来更好地控制并发性。在最后一种情况下,您的应用程序需要在至少支持 Java EE 6 Web 配置文件(Glassfish、JBoss、Resin)的服务器上运行。
Those methods are absolutely not 'buffered' (I think the word you're looking for is
synchronized
). Or put differently, an application scoped managed bean is not thread-safe.You either need to make the method synchronized or use an @Singleton @Named bean that gives you finer control over concurrency. In the last case your app would need to run on a server that supports at least the Java EE 6 web profile (Glassfish, JBoss, Resin).