mapper.xml的使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mapper.xml的使用相关的知识,希望对你有一定的参考价值。
参考技术A <?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
" http://mybatis.org/dtd/mybatis-3-mapper.dtd ">
<mapper namespace="mapper.UserMapper">
注意:namesqace命名空间,为了对sql语句进行隔离。方便管理,mapper开发dao方式,使用namespace有特俗作用
mapper代理开发时,namespace指定为mapper接口的全限代理名
要求:传入的user对象中包括 id属性值
以上是关于mapper.xml的使用的主要内容,如果未能解决你的问题,请参考以下文章