FAQ Database Discussion Community
java,hibernate,jpa-2.0,hibernate-cache
I need in my application to remove all data from a cachable table. I suposed that to delete all contents, I had to remove the second level cache, then use a truncate. @Entity @Table(name = "\"cpf_formacode\"") @Cacheable public class CpfRefFormaCode implements Serializable { ....... } the Dao method: public void...