English 中文(简体)
服务器上不同星号的工作如何?
原标题:How does different bean scopes work on the server?

我想到的是,如何应用国际交易日志中不同的星号(@ApplicationScoped@SessionScoped@RequestScoped。 我理解生命周期,但集装箱内储存在哪里? 我正在利用关于共同未来论坛的这些说明。

这些豆类如何储存在服务器上,服务器如何能知道哪些豆类属于谁。

例如,有一个星号:@SessionScoped。 存放在<代码>HTTPSession上的物体? 是否有星号(@ApplicationScoped)储存在ServletContext上的地图样本中? 如果是的话,那么安全是什么。 我猜测过这种错误,但如果有人能够告诉我什么情况,在哪里储存(范围不同),服务器如何能知道哪些人是属于谁的人,......就像还有其他什么孩子(不仅仅是 session子)一样?

我用Java EE 6所有参考资料。

最佳回答

例如,在幕后存放在吉大港山区喷洒物的灯塔吗? 是否有人用@ApplicationScoped储存在SerletContext的地图样本中?

对网络层面来说,情况确实如此。 如果该信标被当即时,你常常可以通过人工回收上述地图中的所有物体来发现该信。

<代码>@RequestScoped是一条特殊事项。 在网络层面,这一范围与要求归属地图相对应,但这一范围也适用于电话,例如边远会议豆,或电动信使信使处理电文。 在这种情况下,没有网上要求,因此没有请求归属地图。 可能将这些物品储存在其他地方,可能的话存放在TLS(Thread Local Deposit)中,由代理人 set开。

如果是的话,那么安全是什么。

申请和会议范围很广的豆类本身并不安全。 You必须注意校对安全,例如使用校对和安全数据结构、同步关键词,或一种固有的阅读安全(如“国家附加说明的灯塔”)。

问题回答

暂无回答




相关问题
Recommended way to develop using Jetty and Eclipse

I am currently developing a J2EE application and I would like to use Jetty. I would like to have iot integrated with Eclipse, so I could debug the appliaction. I ve tried out couple of plugins (...

Call function periodically in Java

we need run one function periodically in Java web application . How to call function of some class periodically ? Is there any way that call function when some event occured like high load in server ...

Why make an EJB rather than a Web Service?

I would have thought that there is a lot of information out there on this, but I haven t found anything that really answers my question. What are the advantages of making an EJB rather than a web ...

Where should I put this configuration setting?

I m designing a fairly small web application which will run on a Sun application server (v9.1). It only has a few pages, no database of its own, and will retrieve/update data via web services. There s ...

JNDI Names -- Is Prefix "jdbc/" needed?

What s up with JNDI names? I m trying to get a javax.sql.DataSource using the new annotations feature of Java 5. It s not working for me, so I want to ask... I have a in my web.xml, inside of it is ...

hibernate interceptors : afterTransactionCompletion

I wrote a Hibernate interceptor : public class MyInterceptor extends EmptyInterceptor { private boolean isCanal=false; public boolean onSave(Object entity, Serializable arg1, Object[] arg2, String[]...

热门标签