2 Replies Latest reply on Feb 10, 2006 5:26 AM by epbernard

    annotation changes ...

    elkner

      Perhaps it is worth to add them to the wiki or hibernate migration guide:

      @Lob(fetch=FetchType.EAGER, optional=true, type = LobType.BLOB)

      is now
      @Lob @Basic(fetch=FetchType.EAGER, optional=true)

      type (blob or clob) is determined automatically

      Use @Interceptors(A.class...) instead of @Interceptor(A.class)