Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Hi Friends, Can we make any method thread safe withour
synchronized keyword?

Answers were Sorted based on User's Feedback



Hi Friends, Can we make any method thread safe withour synchronized keyword?..

Answer / suresh

public interface SingleThreadModel

Ensures that servlets handle only one request at a time.
This interface has no methods.

If a servlet implements this interface, you are guaranteed
that no two threads will execute concurrently in the
servlet's service method. The servlet container can make
this guarantee by synchronizing access to a single instance
of the servlet, or by maintaining a pool of servlet
instances and dispatching each new request to a free servlet.

Note that SingleThreadModel does not solve all thread safety
issues. For example, session attributes and static variables
can still be accessed by multiple requests on multiple
threads at the same time, even when SingleThreadModel
servlets are used. It is recommended that a developer take
other means to resolve those issues instead of implementing
this interface, such as avoiding the usage of an instance
variable or synchronizing the block of the code accessing
those resources. This interface is deprecated in Servlet API
version 2.4.

Is This Answer Correct ?    8 Yes 0 No

Hi Friends, Can we make any method thread safe withour synchronized keyword?..

Answer / faiyaz

To implement SingleThreadModel interface, class can make
thread safe.

Is This Answer Correct ?    6 Yes 3 No

Post New Answer

More Servlets Interview Questions

Hi guys.. Well can u tell me that why there is need of "init()" , i mean why can not we initialize the servlet object with the help of constructors? Thank you.

7 Answers  


what is the difference between Servlet and JSP?Advantage of JSP over Servelt?Any concept present in JSP which we cant implement in Servlet?

31 Answers   ABC, Apere, AZTEC, CTS, CybAge, iFlex, Impact Systems, Sara, TCS,


Write a simple servlet program to print the contents of html.

0 Answers  


What is the difference between the include() and forward() methods?

0 Answers  


What is webservlet?

0 Answers  


Explain the methods of request dispatcher in servlet?

0 Answers  


How to set a cookie that is persisted only for the duration fo the clients session?

1 Answers  


What is servlet instance?

0 Answers  


What if you need to span your transaction across multiple servlet invocations?

0 Answers  


Explain get and post.

0 Answers  


What is the use of servlet context?

0 Answers  


Difference between jakarta tomcat and apache Tomcat?

4 Answers   IBM,


Categories