Hi,
I have the following as part of my class
   /**
     * @hibernate.bag
     *   lazy="true"
     * @hibernate.collection-key
     *   column="userPref_id"
     * @hibernate.composite-element
     *   class="com.nova.model.UserChannel"
     *
 
tagged to my method in my hibernate class.  I want the other class com.nova.model.UserChannel to be composite in this class.
 
However what's generated is :-
     <bag
            name="channels"
            lazy="true"
            inverse="false"
            cascade="none"
        >
 
              <key
                  column="userPref_id"
              />
 
        </bag>
 
What am I missing ?  Any help would be greatly appreciated.
 
Thank you
LS

Reply via email to