Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. @Named
  2. @RequestScoped
  3. public class PeopleController {
  4.  
  5.     // ... removed some original code
  6.  
  7.     @PostConstruct
  8.     public void postConstruct(){
  9.         // no more necessary
  10.     }
  11.    
  12.     // the new even listener method called by JSF
  13.     // right before rendering the response
  14.     public void updatePeopleList(){
  15.         init();
  16.     }
  17.    
  18.     // ... removed some original code here
  19. }