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 |
How to handle exceptions thrown by application with another servlet?
Why is servlet used?
What are the key methods that are involved in processing of http servlets?
What are the uses of servlets?
waht is the main diference b/w servelts and JSP ?
Explain the jar and war files in servlet?
List the Different types of servlet?
What are the disadvantages of storing session state in cookies?
What are the methods in HttpSession and their use?
How forward () method is different from send redirect () method?
What is the difference between the http servlet and generic servlet?
Is tomcat a servlet container?