This content has been marked as final. 
    
Show                 1 reply
    
- 
        1. Re: codes tableabl Aug 10, 2006 11:12 AM (in response to mrohad)you can use ejb3 entities, but you must use hibernate specific annotations, so you will not be portable: import org.hibernate.annotations.Cache; import org.hibernate.annotations.CacheConcurrencyStrategy; @Entity @Cache(usage=CacheConcurrencyStrategy.TRANSACTIONAL) public class AEntity 
 
    