Google News
logo
Java Servlets - Interview Questions
Can you create a Deadlock condition on a servlet?
Yes, a Deadlock situation can be created on a servlet by calling doPost() method inside doGet() method, or by calling a doGet() method inside doPost() method will successfully create a deadlock situation for a servlet.
Advertisement