mybatis中的实用的方法
作者:互联网
一,
<typeAliases>
<package name="com.pojo"/>
</typeAliases>
把所有com.pojo下的类添加别名,为类名的小写 如Student 别名为student
二 ,
<resultMap id="studentmap" type="student">
<id property="sid" column="sid"/>
<result property="sname" column="sname"/>
<result property="tid" column="tid"/>
<association property="teacher" javaType="teacher">
<id property="tid" column="tid"/>
<result property="tname" column="tname"/>
</association>
</resultMap>
resultMap标签,映射不同的字段和属性名 property 为属性名 column为数据库字段名
其中 association 在 一对多或者一对多中使用,可以将两边关联起来
三,
<settings>
<setting name="logImpl" value="LOG4J"/> <!--配合引入日志2-->
</settings>
设置日志
四
<properties resource="db.properties"/><!--引入文件-->
添加文件引入文件
标签:文件,别名,实用,添加,mybatis,一对,方法,association,属性 来源: https://blog.csdn.net/weixin_54097396/article/details/120750885