level « Annotation « JPA Q&A





1. How do I migrate cache related annotations from Hibernate 3.3.x to 3.6.x    stackoverflow.com

My cache usage on entity Foo looked like this

@Entity
class Foo {

    @ManyToOne(fetch = LAZY)
    @Cache(usage = org.hibernate.annotations.CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)
    private Boo boo;

   ...

2. JPA annotation at member level    forum.hibernate.org