码迷,mamicode.com
首页 > 其他好文 > 详细

mybaits 学习笔记(接口式编程)五

时间:2017-12-21 00:14:34      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:ace   span   ryu   cti   resultmap   学习笔记   ssi   book   gpo   

 一、在DAO层创建接口类

  如: IUser.java

package dao;

import java.util.List;

import bean.User;

public interface IUser{

  public List<User> queryUserList(User user);

}

二、包名及接口名作为User.xml文件的namespace

  <mapper namespace="dao.IUser">

 

三、User.xml中的sql id 与接口中的方法名使用相同名称

  <select id="queryUserList" parameterType="bean.User" resultMap="User">

四、接口方法的参数与xml中的参数一致

  public List<User> queryUserList(User user);

  <select id="queryUserList" parameterType="bean.User" resultMap="User">

五、接口返回值类型与xml中的返回值类型一致

   public List<User> queryUserList(User user);

   <select id="queryUserList" parameterType="bean.User" resultMap="User">

  

<resultMap type="bean.User" id="User">
<id column="u_id" jdbcType="INTEGER" property="id"/>
<result column="name" jdbcType="VARCHAR" property="name"/>
<collection property="bookList" resultMap="Book.BookResult"></collection>
</resultMap>

六、DAO层调用

IUser iuser= sqlSession.getMapper(IUser.class);
userList = iuser.queryUserList(user);

 

  

mybaits 学习笔记(接口式编程)五

标签:ace   span   ryu   cti   resultmap   学习笔记   ssi   book   gpo   

原文地址:http://www.cnblogs.com/wwwx/p/8076208.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!