Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

How to maintain security in servlets?

2 Answers  


Difference between get and post in java servlets?

0 Answers  


What is the need of session tracking in HttpServlet ?

3 Answers  


can i call init() method in destroy() method of servlset. ?

5 Answers   IBM,


how many jsp scripting elements are there and what are those?

0 Answers  


What are the steps involved in placing a servlet within a package?

0 Answers  


What is the process for chaining servlet?

0 Answers  


What are the supporting protocol by HttpServlet ?

0 Answers  


How can the session in servlet can be destroyed?

0 Answers  


Differentiate between the web server and application server?

0 Answers  


What’s the difference between sendredirect and forward methods

0 Answers  


Explain the working of service() method of a servlet.

0 Answers  


Categories