I want to use JPA (eclipselink) to get data from my database. The database is changed by a number of other sources and I therefore want to go back to the database for every
If you wish to disable caching without getting vendor specific, you could annotate your domain object with:
@Cacheable(false)
Here is an example:
@Entity @Table(name="SomeEntity") @Cacheable(false) public class SomeEntity { // ... }