How to pass JavaBeans data to JSP using Servlets?

Answers were Sorted based on User's Feedback



How to pass JavaBeans data to JSP using Servlets?..

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

How to pass JavaBeans data to JSP using Servlets?..

Answer / muralisankar

Using RequestDispatcher as follows,

RequestDispatcher rd =
getServletContext().getRequestDispatcher("test.jsp");
rd.forward(req,res);

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More Servlets Interview Questions

In which cases Destroy() is invoked?

2 Answers  


How to upload a file to the server using servlet?

0 Answers  


where the generated jsp source file are stored?

7 Answers   HCL,


What is generic servlet class?

0 Answers  


How values can be passed from HTML page to servlet?

7 Answers   ABC,


we cant Override Jsp Service method?Why?

4 Answers   Infrasoft, Mind Tree,


what is the difference between servlets and struts?

3 Answers  


What is the use of send redirect () method?

0 Answers  


Can servlet have a constructor ?

0 Answers  


How do you find out what client machine is making a request to your servlet

0 Answers  


If you want to modify the servlet,will the Webserver need to be ShutDown ?

9 Answers  


What are the classes and interfaces for servlets?

4 Answers  


Categories