On to the Servlets Application , i know that there is only one Servlet created , which perofrms all requests for the Actions
If we have a DTO Object which we use for Setting the Data inside the Servlet , for example
public class Servlet extends HttpServlet
{
public void doGet()
{
EmployeeDTO edto = new EmployeeDTO();
edto.setName("Test");
}
}
Now if there are 100 reuests , how many DTO objects created here ??