How to pass JavaBeans data to JSP using Servlets?
Answers were Sorted based on User's Feedback
Answer / pramod kumar
<jsp:useBean> tag can be used to avail the bean data in
case you are working with JSP's, or if you use a servlet
you can set the bean to the request object and forward it
to the JSP component and there in JSP retreive this object
and use getter methods and do something like this and it
works for sure.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / muralisankar
Using RequestDispatcher as follows,
RequestDispatcher rd =
getServletContext().getRequestDispatcher("test.jsp");
rd.forward(req,res);
Is This Answer Correct ? | 3 Yes | 0 No |
In which cases Destroy() is invoked?
How to upload a file to the server using servlet?
where the generated jsp source file are stored?
What is generic servlet class?
How values can be passed from HTML page to servlet?
we cant Override Jsp Service method?Why?
4 Answers Infrasoft, Mind Tree,
what is the difference between servlets and struts?
What is the use of send redirect () method?
Can servlet have a constructor ?
How do you find out what client machine is making a request to your servlet
If you want to modify the servlet,will the Webserver need to be ShutDown ?
What are the classes and interfaces for servlets?