I'm making a java ee project for class, and am having some issues with the database. When I load a page, it loads the information from the database correctly. If i modify that information on that page, and refresh, it works correctly. If i have the page open on one machine, and modify it on another machine, it does not work correctly.
~Thanks in advance.
P.S. It seems to have something to do with EclipseLink Caching the results. Could I turn it off?
I was already thinking that it's about JPA so yes you can turn if off. Paste this code into your persistence.xml
<property name="eclipselink.cache.shared.default" value="false"/>