How to make servlet thread safe?
Answer Posted / snehal
requests to your webpage may and probably will occur concurrently which means multiple threads will be running your code simultaneously. This means you have to take care that one thread do not interfere with processing of other threads, therefore thread-safety is an important issue in web application. Developers should be aware of this issue and should make sure their code works in a thread-safe way.
import javax.servlet.*;
import javax.servlet.http.*;
public class IamThreadSafeServlet extends HttpServlet
implements SingleThreadModel {
/*SingleThreadModel is an Marker Interface which we
have to implement to make a servlet thread safe*/
private ServletConfig config;
public void init (ServletConfig config)
throws ServletException {
this.config = config;
}
public void doGet (HttpServletRequest req,
HttpServletResponse res ) throws ServletException, IOException {
res.setContentType( "text/html" );
PrintWriter out = res.getWriter();
out.println( "<html>" );
out.println( "<head>" );
out.println( "<title>This is A Thread safe Servlet</title>" );
out.println( "</head>" );
out.println( "<body>" );
out.println( "<h1>A Sample Servlet</h1>" );
out.println( "</body>" );
out.println( "</html>" );
out.close();
}
}
| Is This Answer Correct ? | 24 Yes | 2 No |
Post New Answer View All Answers
Which protocol will be used by browser and servlet to communicate
What is a servlet context?
Which method is called when reference variable is passed in system.net?
Should I override the service() method?
What is new in ServletRequest interface ? (Servlet 2.4)
How do you create a cookie using servlet?
What is the servletconfig object?
If my browser does not support cookie, and my server sends a cookie instance what will happen?
What is difference between PrintWriter and ServletOutputStream?
What is url encoding and url decoding
What is load-on-startup in servlet?
Tell us something about servletcontext interface.
Explain the difference between get and post method in servlet?
What are the types of Session Tracking ?
What is the difference between encodeRedirectUrl and encodeURL?