0 Replies Latest reply on Mar 28, 2007 11:13 AM by zdaler

    lazy property loading ?

    zdaler

      Is there a way to lazily load entity properties in seam ?
      I'd like to load a large collection of objects without loading a (potentially large) content inside every one of them ...

      I've tried :

      @Lob
       @Basic(fetch = FetchType.LAZY)
       public String getContent() {
       return content;
       }


      But that does not seem to have any effect ...