当前位置: 技术问答>java相关
请大家帮忙翻译一句话,关于 SingleThreadModel。
来源: 互联网 发布时间:2015-06-21
本文导语: The use of the SingleThreadModel interface guarantees that only one thread at a time will execute in a given servlet instance’s service method. It is important to note that this guarantee only applies to each servlet instance, since the contain...
The use of the SingleThreadModel interface guarantees that only one thread at a time will execute in a given servlet instance’s service method. It is important to note that this guarantee only applies to each servlet instance, since the container may choose to pool such objects.Objects that are accessible to more than one servlet instance at a time, such as instances of HttpSession, may be available at any particular time to multiple servlets, including those that implement SingleThreadModel.
3X~~~~~~~~~
3X~~~~~~~~~
|
就是说在某一时刻,
只有thread1在调用servlet1的HTTPSESSION
只有thread2在调用servlet2的HTTPSESSION
只有thread3在调用servlet3的HTTPSESSION
但是却有多个线程thread1,thred2,thread3在调用httpsession
只有thread1在调用servlet1的HTTPSESSION
只有thread2在调用servlet2的HTTPSESSION
只有thread3在调用servlet3的HTTPSESSION
但是却有多个线程thread1,thred2,thread3在调用httpsession
|
不是翻译,是我的理解:
SingleThreadModel单线程模式接口的servlet在同一时间内只有一个线程运行它的service方法。
我们知道平时我们说servlet是多线程的,对吧?singlethreadmodel为什么呢?
容器可以用池来管理这种singlethreadmodel,这样就可以实现多个并发访问了。
|
singleThreadModel接口的使用保证了在给定的servlet实例的服务方法内一次只执行一个线程。鉴于容易可以选择将这些对象放入池中,所以值得一提的是,这种保证只对每个servlet实例适合。对象一次可以由多个servlet实例访问,例如HttpSession实例,在任何时间都可以被多个servet得到,包括那些实现了SingleThreadModel的servlet。
照字面翻译,多多原谅。。。。。
照字面翻译,多多原谅。。。。。