• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

reset jsf form

 
Ranch Hand
Posts: 85
Eclipse IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In my web Application, There is registration application. I am gathering user information from two form(forms are in two different pages ). I have put (registerBean) jsf bean in session scope. when click the next buton in first page second page loaded. after filling the second page form I click submit button. Then user registration data successfully inserted to database. but then open the first page.. "STILL PREVIOUSLY FILL DATA ARE REMAINING" . so i have add following code to clear forms after registration.



then forms are reset. but then after first user registration work fine. On completing a registration and carrying out registration for the second time a null point exception is displayed. give me a idea to resolve this issue or how i can reset forms?

Thanks in Advance...
 
Ranch Hand
Posts: 148
Hibernate Tomcat Server Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
One approach could be ,
Put your first bean in a view scope(if you are using JSF2.0)

Then inject the first pageBean into the second pageBean by using ManagedProperty Attribute in faces.config or @ManagedProperty

This will allow you to save all value from second bean into DB and also reset your first and second bean values.

Hope this works and helps
Thanks
 
reply
    Bookmark Topic Watch Topic
  • New Topic