Tuser.hbm.xml  <set
      name="tgroup"<!--随便名,好记就行-->
      table="t_user_group"<!--中间表-->
      lazy="true"<!--延迟,使用时先执行SQL-->
      inverse="false"<!--false为主动-->
      sort="unsorted"
      cascade="save-update">
      <key column="F_UserID"/>"<!--中间表的F_UserID对应本表F_ID主键-->
        <many-to-many class="com.hibernate.table.Tgroup" column="F_GroupID" outer-join="auto"/><!--中间表的F_GroupID对应Tgroup表F_ID主键-->
   </set>