Hi all,
I currently have two java classes User and Group with a many-to-many association.
The physical model has 3 tables
USER,GROUP,USER_GROUPS.
I am facing the following problem :
Everything is working fine despite that when I alter the data outside the application (let say directly into the DB)
the results are still displaying the old data and in order to see the changes I must redeploy the whole app (war file).
I use a second level cache that I disabled for test purposes.
I am using a datasource but even when I redeploy the connection pool behind it works nothing!!! I defenetly have to redeploy the app in order to have consitent results.
Has anyone already faced the same strange behaviour and if so, could you please advice me on how to solve it ??
Thanks in advance!!!
|