| Author |
Struts2 +Hibernate session not get stored
|
Prakash Aradwad
Greenhorn
Joined: Jan 17, 2012
Posts: 15
|
|
RECONCILATIONBEAN reconcilationBean=here some method which takes bean from database using hibernate
request.getSession().setAttribute("reconcilationBean",reconcilationBean );
in above code i have put bean in session
and in folling code
RECONCILATIONBEAN rep = (RECONCILATIONBEAN) request.getSession().getAttribute("reconcilationBean");
System.out.println("Bank Code for ........................." + rep.getBANK_CODE());
i got bank code always null
it should display perticuler bank code
|
 |
Vicky Vijay
Ranch Hand
Joined: Apr 23, 2008
Posts: 125
|
|
1. Check whether you are getting the "reconcilationBean.getBANK_CODE()" ...... value from the database during the retrieval process...
If your getting the value...
then...
2. Check whether the session attribute has been removed in any where in the code... between these two process
|
 |
Prakash Aradwad
Greenhorn
Joined: Jan 17, 2012
Posts: 15
|
|
thanks
the second solution is useful.
|
 |
 |
|
|
subject: Struts2 +Hibernate session not get stored
|
|
|