| Author |
private varibles in servlet
|
sitaram irrinki
Ranch Hand
Joined: Feb 16, 2005
Posts: 158
|
|
|
can we write private variables in servlet?if yes how they are managed by multiple threads?
|
 |
Makarand Parab
Ranch Hand
Joined: Dec 10, 2004
Posts: 121
|
|
Hi If it is a private instance variable, that variable will be shared by all the threads. Having a instance variable in servlet is highly discouraged. Well i never define one. If you define a variable inside the service, dopost, doget methods as it is a local variable for the method, it gets created per thread and is blown off when the method ends. Hope it makes sense Let me know if i am wrong. Regards Makarand Parab
|
 |
Scott Duncan
Ranch Hand
Joined: Nov 01, 2002
Posts: 363
|
|
|
Makarand is correct. Object vars are not thread safe in a servlet. static final is OK and possibly even variables that are ONLY initialized in the init method and therefore not changed. If this is a concern make them member/method vars where they will be thread safe.
|
No more rhymes! I mean it!<br /> <br />Does anybody want a peanut?
|
 |
 |
|
|
subject: private varibles in servlet
|
|
|