different ways of using thread in Java/J2EE

User avatar
Sabina
Уже с Приветом
Posts: 5669
Joined: 13 Oct 2000 09:01
Location: East Bay, CA

different ways of using thread in Java/J2EE

Post by Sabina »

3. Briefly explain the different ways of using thread in Java/J2EE. How have you used one or more of these techniques in your code?


Can somebody help me quick with this question? Which ways they are talking about?

URL is OK

Thanks,
Sabina
User avatar
Blake
Уже с Приветом
Posts: 1102
Joined: 16 Sep 2003 04:41
Location: Out Of Blue

Re: different ways of using thread in Java/J2EE

Post by Blake »

Sabina wrote:
3. Briefly explain the different ways of using thread in Java/J2EE. How have you used one or more of these techniques in your code?


Can somebody help me quick with this question? Which ways they are talking about?

URL is OK

Thanks,
Sabina


В J2EE лучше вообще не использовать threads, особенно в EJB контeйнере, где транзакции завязаны на current thread. Вопрос, IMHO, провокационный :wink:
User avatar
Sabina
Уже с Приветом
Posts: 5669
Joined: 13 Oct 2000 09:01
Location: East Bay, CA

Re: different ways of using thread in Java/J2EE

Post by Sabina »

Blake wrote:В J2EE лучше вообще не использовать threads, особенно в EJB контeйнере, где транзакции завязаны на current thread. Вопрос, IMHO, провокационный :wink:


Так и написала, только вот теперь переживаю, что они подумают, что это я сама такая умная :wink:

Сабина
User avatar
Blake
Уже с Приветом
Posts: 1102
Joined: 16 Sep 2003 04:41
Location: Out Of Blue

Re: different ways of using thread in Java/J2EE

Post by Blake »

Sabina wrote:
Blake wrote:В J2EE лучше вообще не использовать threads, особенно в EJB контeйнере, где транзакции завязаны на current thread. Вопрос, IMHO, провокационный :wink:


Так и написала, только вот теперь переживаю, что они подумают, что это я сама такая умная :wink:

Сабина


Иногда в сервлетах используют, но, IMHO, это не очень хороший дизайн создавать свои threads в "чужих" контайнерах :wink:
User avatar
Sabina
Уже с Приветом
Posts: 5669
Joined: 13 Oct 2000 09:01
Location: East Bay, CA

Re: different ways of using thread in Java/J2EE

Post by Sabina »

Blake wrote:Иногда в сервлетах используют, но, IMHO, это не очень хороший дизайн создавать свои threads в "чужих" контайнерах :wink:


В чужих - это да :mrgreen:
Ладно что написала, то написала. Всяко лучше, чем ничего.

Спасибо за оперативную подсказку Image, а то у меня время конкретно истекало,
Сабина
User avatar
Sabina
Уже с Приветом
Posts: 5669
Joined: 13 Oct 2000 09:01
Location: East Bay, CA

Re: different ways of using thread in Java/J2EE

Post by Sabina »

Sabina wrote:3. Briefly explain the different ways of using thread in Java/J2EE. How have you used one or more of these techniques in your code?


Вот тоже мненьице, возможно совсем не в тему. Но все-таки интересно, что народ считает

By the way, J2EE generally discourages multithreading (JMS is an exception). I believe that Tomcat or any J2EE container will provide synchronization through the get and set methods (ServletContext.getAttribute and ServletContext.setAttribute, for instance) so that you don't have to perform synchronization. After all, how could J2EE explicitly forbid the user to perform threading but allow the user to perform synchronization?


Сабина
User avatar
Blake
Уже с Приветом
Posts: 1102
Joined: 16 Sep 2003 04:41
Location: Out Of Blue

Re: different ways of using thread in Java/J2EE

Post by Blake »

JMS is an exception


Не в контейнере :)

After all, how could J2EE explicitly forbid the user to perform threading but allow the user to perform synchronization?



Теоретически, можно так: http://java.sun.com/j2se/1.4.2/docs/gui ... Permission . Надо будет как нибудь попробовать :wink:

Return to “Вопросы и новости IT”