I want to implement Real time notification in my page. Suppose I have page1 and page2. An action of page1, I need to implement the notification on page2. I have noted a tutorial in JSF which is called Primefaces. http://www.primefaces.org/showcase/push/notify.xhtml. Can you guys suggest anything similar in jsp/servlets?
There is nothing in Servlets or JSP for that, you need to look into other technologies. In addition to the long-in-the-tooth Comet, you might look into web sockets, SSE or Meteor.
Or just poll with Ajax if you want to keep it simple.