posted 13 years ago
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