mybatis
1.xml文件内容的注释: <!--注释内容-->
2.resource xml文件配置修改,需要重启服务才能生效。
3. resultMap:适合使用返回值是自定义实体类的情况
resultType:适合使用返回值得数据类型是非自定义的,即jdk的提供的类型
<resultMap type="Person" id="BaseResultMap">
<id column="id" property="id" />
<result column="user_name" property="userName" />
</resultMap>
type属性(resultMap):映射实体类的数据类型; id属性(resultMap):resultMap的唯一标识
column:库表的字段名;property:实体类里的属性名
<resultMap 属性>
<id /> 主键列标签
<result />非主键列标签
</resultMap>
相关推荐
xiuyangsong 2020-11-16
Nishinoshou 2020-11-09
jimgreatly 2020-09-01
dongxurr 2020-08-18
Dullonjiang 2020-08-15
Dullonjiang 2020-08-11
Dullonjiang 2020-08-09
dongxurr 2020-08-08
yunzhonmghe 2020-08-07
jimgreatly 2020-08-03
Dullonjiang 2020-07-30
jimgreatly 2020-07-27
liqiancao 2020-07-26
xiuyangsong 2020-07-26
dongxurr 2020-07-26
mcvsyy 2020-07-26
helloxusir 2020-07-25
牧场SZShepherd 2020-07-20