美文网首页
mybatis笔记

mybatis笔记

作者: 徐卖狼 | 来源:发表于2018-12-03 17:16 被阅读0次

    2018-5-3(mybatis笔记:)
    mybatis标签说明:
    id:
    唯一标识(一般对应mapping接口地址)
    parameterType:
    传给此语句的参数的全路径或者别名 例如:
    com.test.pojo.User或者user
    resultType :
    语句返回值类型或者别名,如果是集合,那么这里填写的是集合的泛型,而不是集合的本身!
    (resultType 与resultMap 不能并用)
    例如:
    <select id="userList" parameterType="user" resultType="User">
    select * from user where name =#{name}
    </select>

    相关文章

      网友评论

          本文标题:mybatis笔记

          本文链接:https://www.haomeiwen.com/subject/tffucqtx.html