A.7 springboot mybatis

springboot mybatis

1. 工程搭建

依据第一章节的样例工程,进行更改。

1.1 pom修改

需要引入:

  • mysql jdbc 驱动包
  • mybatis-spring-boot-starter(整合MyBatis的核心依赖)

详细内容如下:

<!-- mybatis & db -->
<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
    <groupId>org.mybatis.spring.boot</groupId>
    <artifactId>mybatis-spring-boot-starter</artifactId>
    <version>1.1.1</version>
</dependency>

1.2 application.properties 修改

  • 增加数据库连接
  • mybatis mapper文件扫描位置
#jdbc config
spring.datasource.url=jdbc:mysql://192.168.137.101:3306/spring-boot-demo?characterEncoding=utf-8&autoReconnect=true
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.max-active=5
spring.datasource.max-idle=3
spring.datasource.test-on-borrow=true
spring.datasource.test-while-idle=true
spring.datasource.validation-query=SELECT 1;

#mybatis config
mybatis.mapperLocations = classpath:mapper/*.xml
mybatis.typeAliasesPackage = pers.mateng.demo.springboot

2. 业务编码

2.1 创建pojo

package pers.mateng.demo.springboot.domain;

public class User {
    
    private Long id;
    
    private String name;
    
    private Integer age;
    
    get/set ...
}
package pers.mateng.demo.springboot.dto;

public class UserCondition {

    /**用户名*/
    private String name;
    
    /**根据年龄范围查询用户,范围的最小值*/
    private Integer minAge;
    
    /**根据年龄范围查询用户,范围的最大值*/
    private Integer maxAge;
    
    /**分页条件,起始位置*/
    private Integer startPosition;
    
    /**分页条件,查询的最大条数*/
    private Integer maxResult;
}

2.2 创建DAO

interface

@Mapper
public interface UserDao {
    
    public int add(User user);
    
    public int delete(Long id);
    
    public User getById(Long id);
    
    public List<User> getList(UserCondition condition);
    
    public Long getCount(UserCondition condition);

}

mapper

<?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" > 
<?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="pers.mateng.demo.springboot.dao.UserDao" >

    <resultMap id="user" type="pers.mateng.demo.springboot.domain.User">
        <id column="u_id" property="id" />
        <result column="u_name" property="name" />
        <result column="u_age" property="age" />
    </resultMap>
      
    <select id="getById" resultMap="user">  
        select * from tb_user where u_id = #{id}  
    </select>
      
    <select id="getList" resultMap="user" parameterType="pers.mateng.demo.springboot.dto.UserCondition">  
        select * from tb_user 
        <include refid="where"></include>
        limit #{startPosition}, #{maxResult}
    </select> 
    
    <select id="getCount" parameterType="pers.mateng.demo.springboot.dto.UserCondition" resultType="Long">  
        select count(1) from tb_user 
        <include refid="where"></include>
    </select>
    
    <sql id="where">
        <where>
            <if test="name != null and name.length() > 0">
                and u_name LIKE CONCAT('%', #{name}, '%')
            </if>
            <if test="minAge != null">
                and u_age <![CDATA[ >= ]]> #{minAge}
            </if>
            <if test="maxAge != null">
                and u_age <![CDATA[ <= ]]> #{maxAge}
            </if>
        </where>
    </sql>
      
    <insert id="add" parameterType="pers.mateng.demo.springboot.domain.User">  
        insert into tb_user(u_name, u_age) values(#{name,jdbcType=VARCHAR}, #{age,jdbcType=TINYINT})
    </insert>  
      
    <delete id="delete">  
        delete from tb_user where u_id = #{id}  
    </delete>  
    
</mapper>  

2.3 controller

/**
 * 用户管理的controller
 * @author mateng
 */
@RestController
@RequestMapping(path="user")
public class UserController {
    
    @Autowired
    private UserDao userDao;
    
    @RequestMapping(method=RequestMethod.GET)
    public Map<String, Object> page(@ModelAttribute UserCondition condition) {
        Map<String, Object> result = new HashMap<String, Object>();
        result.put("total", userDao.getCount(condition));
        result.put("rows", userDao.getList(condition));
        return result;
    }
    
    @RequestMapping(method=RequestMethod.POST)
    public int add(@ModelAttribute User user) {
        return userDao.add(user);
    }
    
    @RequestMapping(path="/{id}", method=RequestMethod.GET)
    public User findById(@PathVariable Long id) {
        return userDao.getById(id);
    }
    
    @RequestMapping(path="/{id}", method=RequestMethod.DELETE)
    public int delete(@PathVariable Long id) {
        return userDao.delete(id);
    }

}

3. 验证

启动工程,使用如下命令测试增加、查询接口。注意:下面连接中的ip地址(当前开发机器的ip地址)

1、增加:

curl -X POST --header 'Content-Type: application/x-www-form-urlencoded' -d "name=zhansan&age=30" 'http://192.168.50.7:8888/user'

2、查询:

分页查询

curl -X GET 'http://192.168.50.7:8888/user'

根据id查询

curl -X GET 'http://192.168.50.7:8888/user/1'

5. 源码

springboot-demo-5

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,558评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,002评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,036评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,024评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,144评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,255评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,295评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,068评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,478评论 1 305
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,789评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,965评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,649评论 4 336
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,267评论 3 318
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,982评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,223评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,800评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,847评论 2 351

推荐阅读更多精彩内容