My technology stack is -
- AngularJS
- Bootstrap
- Spring MVC
- Hibernate
What am I doing :
There is a list of Items on which I am doing CRUD (Create, Read, Update and Delete)
- Posting form Data via Angular Controller to a Spring Controller.
- Spring Controller -> DAO method -> DB is updated
- Spring Controller Returns "Y" or "N"
- Angular gets the Status Message and Reloads the Angular Model(A Json Array to populate the List of Items)
- Same with Update and Delete
My objective is to achieve real-time data manipulation without page reload.
This works fine in Chrome. However, IE can not detect the Model Change. It keeps displaying the data prior to addition/updation/deletion (from its cache). Only after I clear the cache manually, am I actually able to see the changed Model.
Need help on how to resolve this problem with IE8 and above.
P.S. I have already tried setting the meta headers