gpt4 book ai didi

详解Mybatis(五)Mapper接口

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 34 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章详解Mybatis(五)Mapper接口由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

(1)mapper接口和原理 。

mapper组建 。

  1. 1、mapper文件和mapper接口应该放在同一个接口中
  2. 2、mapper文件中的namespace应该设置为mapper接口的全限定名称
  3. 3、mapper文件中的操作元素id对应mapper接口的方法名称

mapper原理: 动态代理 。

(2)配置文件 。

usermapper.xml 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?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,namespace的值习惯上设置成包名+sql映射文件名,这样就能够保证namespace的值是唯一的
例如namespace= "me.gacl.mapping.usermapper" 就是me.gacl.mapping(包名)+usermapper(usermapper.xml文件去除后缀)
  -->
<mapper namespace= "mybatis.domain.mapper.usermapper" >
 
   <resultmap type= "user" id= "baseresultmap" >
     <result column= "t_id" property= "id" />
     <result column= "t_name" property= "name" />
     <result column= "t_salary" property= "salary" />
   </resultmap>
  
   <!-- 保存操作 -->
   <insert id= "save" usegeneratedkeys= "true" keyproperty= "id" >
       insert into t_user (name , salary)    values (#{name},#{salary}) 
   </insert>
  
   <!-- 更改操作 -->
   <update id= "update" >
     update t_user where name=#{name},salary=#{salary} where id=#{id}
   </update>
  
   <!-- 删除操作 -->
   <delete id= "delete" >
     delete from t_user where id=#{id}
   </delete>
  
   <!-- 查询单个操作 -->
   <select id= "select" parametermap= "java.lang.long" resulttype= "mybatis.domain.user" >
     select * from t_user where id = #{id}
   </select>
 
     <!-- 查询多个操作 -->
     <select id= "selectall" resulttype= "user" >
         select id,name,salary from t_user
     </select> 
</mapper>

usermapper.java 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import java.util.list;
 
import mybatis.domain.user;
 
public interface usermapper {
     void save(user u);
    
     void update(user u);
    
     void delete( long id);
    
     user select(user u);
    
     list<user> selectall();
}

以上所述是小编给大家介绍的mybatis mapper接口详解整合,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对我网站的支持! 。

原文链接:https://blog.csdn.net/qq_36675851/article/details/89061711 。

最后此篇关于详解Mybatis(五)Mapper接口的文章就讲到这里了,如果你想了解更多关于详解Mybatis(五)Mapper接口的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com