xml文件中的resultMap

  • Post author:
  • Post category:其他


<resultMap id="StudentTeacher" type="Student">
    <result property="id" column="id"></result>
    <result property="name" column="name"></result>
//对于复杂的属性要单独处理,如果是对象的话用association,集合的话用collection
//property对应的实体类里面的,column对应的数据库里面
//对象的类型javaType="Teacher",select="getTeacher"查出的对象tid要干嘛
javaType=""指定属性的类型
集合中的泛型信息,我们使用ofType获取
    <association property="Teacher" column="tid" javaType="Teacher"         select="getTeacher"/>
</resultMap>



版权声明:本文为ttpphhwwqq原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。