作者微信 bishe2022

代码功能演示视频在页面下方,请先观看;如需定制开发,联系页面右侧客服
SpringBoot非官方教程 | 第六篇:springboot整合mybatis

Custom Tab



引入依赖

在pom文件引入mybatis-spring-boot-starter的依赖:

  <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter<artifactId>
            <version>1.3.0</version>
        </dependency>


引入数据库连接依赖:

<dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid</artifactId>
            <version>1.0.29</version>
        </dependency>


引入数据源

application.properties配置文件中引入数据源:

spring.datasource.url=jdbc:mysql://localhost:3306/test
spring.datasource.username=root
spring.datasource.password=123456spring.datasource.driver-class-name=com.mysql.jdbc.Driver


这样,springboot就可以访问数据了。

创建数据库表

建表语句:

-- create table `account`# DROP TABLE `account` IF EXISTSCREATE TABLE `account` (  
`id` int(11) NOT NULL AUTO_INCREMENT,  
`name` varchar(20) NOT NULL,  
`money` double DEFAULT NULL,  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;INSERT INTO 
`account` VALUES ('1', 'aaa', '1000');INSERT INTO `account` VALUES ('2', 'bbb', '1000');
INSERT INTO `account` VALUES ('3', 'ccc', '1000');


具体实现

这篇文篇通过注解的形式实现。

创建实体:

“`
public class Account {
private int id ;
private String name ;
private double money;

setter…
getter…
}

“`

dao层

@Mapperpublic interface AccountMapper {

    @Insert("insert into account(name, money) values(#{name}, #{money})")    
    int add(@Param("name") String name, @Param("money") double money);    
    @Update("update account set name = #{name}, money = #{money} where id = #{id}")    
    int update(@Param("name") String name, @Param("money") double money, @Param("id") int  id);    
    @Delete("delete from account where id = #{id}")    
    int delete(int id);    
    @Select("select id, name as name, money as money from account where id = #{id}")
    Account findAccount(@Param("id") int id);    
    @Select("select id, name as name, money as money from account")
    List<Account> findAccountList();
}


service层

@Servicepublic class AccountService {
    @Autowired
    private AccountMapper accountMapper;    
    public int add(String name, double money) {        
    return accountMapper.add(name, money);
    }    public int update(String name, double money, int id) {        
    return accountMapper.update(name, money, id);
    }    public int delete(int id) {        
    return accountMapper.delete(id);
    }    public Account findAccount(int id) {        
    return accountMapper.findAccount(id);
    }    public List<Account> findAccountList() {        
    return accountMapper.findAccountList();
    }
}


controller层,构建restful API

package com.forezp.web;import com.forezp.entity.Account;import com.forezp.service.AccountService;import org.
springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.*;
import java.util.List;/**
 * Created by fangzhipeng on 2017/4/20.
 */@RestController@RequestMapping("/account")public class AccountController {

    @Autowired
    AccountService accountService;    
    @RequestMapping(value = "/list", method = RequestMethod.GET)    
    public List<Account> getAccounts() {        
    return accountService.findAccountList();
    }    @RequestMapping(value = "/{id}", method = RequestMethod.GET)    
    public Account getAccountById(@PathVariable("id") int id) {       
     return accountService.findAccount(id);
    }    @RequestMapping(value = "/{id}", method = RequestMethod.PUT)    
    public String updateAccount(@PathVariable("id") int id, 
    @RequestParam(value = "name", required = true) String name,                                
    @RequestParam(value = "money", required = true) double money) {        
    int t= accountService.update(name,money,id);        
    if(t==1) {            
    return "success";
        }else {            
        return "fail";
        }

    }    @RequestMapping(value = "/{id}", method = RequestMethod.DELETE)    
    public String delete(@PathVariable(value = "id")int id) {        
    int t= accountService.delete(id);        
    if(t==1) {            
    return "success";
        }else {            
        return "fail";
        }

    }    
    @RequestMapping(value = "", method = RequestMethod.POST)    
    public String postAccount(@RequestParam(value = "name") String name,                              
    @RequestParam(value = "money") double money) {       
    int t= accountService.add(name,money);       
    if(t==1) {           
    return "success";
       }else {           
       return "fail";
       }

    }


}


通过postman测试通过。

源码下载:https://github.com/forezp/SpringBootLearning

参考资料

mybatis

MyBatis整合

SpringBoot非官方教程 | 第一篇:构建第一个SpringBoot工程

SpringBoot非官方教程 | 第二篇:Spring Boot配置文件详解

SpringBoot非官方教程 | 第三篇:SpringBoot用JdbcTemplates访问Mysql

SpringBoot非官方教程 | 第四篇:SpringBoot 整合JPA

SpringBoot非官方教程 | 第五篇:springboot整合 beatlsql


SpringBoot非官方教程 | 第七篇:springboot开启声明式事务

SpringBoot非官方教程 | 第八篇:springboot整合mongodb

SpringBoot非官方教程 | 第九篇: springboot整合Redis

SpringBoot非官方教程 | 第十篇: 用spring Restdocs创建API文档

SpringBoot非官方教程 | 第十一篇:springboot集成swagger2,构建优雅的Restful API

SpringBoot非官方教程 | 第十二篇:springboot集成apidoc

SpringBoot非官方教程 | 第十三篇:springboot集成spring cache

SpringBoot非官方教程 | 第十四篇:在springboot中用redis实现消息队列

SpringBoot非官方教程 | 第十五篇:Springboot整合RabbitMQ

SpringBoot非官方教程 | 第十六篇:用restTemplate消费服务

SpringBoot非官方教程 | 第十七篇:上传文件

SpringBoot非官方教程 | 第十八篇: 定时任务(Scheduling Tasks)

SpringBoot非官方教程 | 第十九篇: 验证表单信息

SpringBoot非官方教程 | 第二十篇: 处理表单提交

SpringBoot非官方教程 | 第二十一篇: springboot集成JMS

SpringBoot非官方教程 | 第二十二篇: 创建含有多module的springboot工程

SpringBoot非官方教程 | 第二十三篇: 异步方法

SpringBoot非官方教程 | 第二十四篇: springboot整合docker

SpringBoot非官方教程 | 第二十五篇:2小时学会springboot

SpringBoot非官方教程 | 第二十六篇: sprinboot整合elk,搭建实时日志平台

优秀文章推荐:




转载自:http://blog.csdn.net/forezp/article/details/70768477

Home