美文网首页
springboot+Mybatis+mysql示例

springboot+Mybatis+mysql示例

作者: 搁浅的三刀流zoro | 来源:发表于2019-12-20 11:16 被阅读0次

https://start.spring.io

新建项目


spring.png

pom.xml 文件增加mysql和mybatis配置

        <!--mysql数据库驱动-->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>
        
        <!--mybatis-->
        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>2.1.0</version>
        </dependency>

删除application.properties,使用yml配置
新增
application-dev.yml、application.ym 文件

dev文件中jdbc:mysql://localhost:3306/ 后跟的是数据库名称

数据中新增user表,并且插入数据

CREATE TABLE `user` (
  `id` int(32) NOT NULL AUTO_INCREMENT,
  `username` varchar(32) NOT NULL,
  `password` varchar(50) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

INSERT INTO `user` VALUES ('1', 'malone', '007');
INSERT INTO `user` VALUES ('2', 'oyl', '520');

新建User类

public class User {
    private Integer id;
    private String username;
    private String password;
    ...省略get set 
}

新建UserMapper

@Repository
public interface UserMapper {
    User getUser(int id);
}

新建UserService

@Service
public class UserService {
    @Autowired
    UserMapper userMapper;
    public User getUser(int id){
        return userMapper.getUser(id);
    }
}

新建UserController

@RestController
@RequestMapping("/springboot")
public class UserController {

    @Autowired
    private UserService userService;

    @RequestMapping("getUser/{id}")
    public String GetUser(@PathVariable int id){
        return userService.getUser(id).toString();
    }
}

resources目录下新增mapping文件夹,并且新建UserMapper.xml

<?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="com.joy.mapper.UserMapper">

    <resultMap id="BaseResultMap" type="com.joy.entity.User">
        <result column="id" jdbcType="INTEGER" property="id" />
        <result column="username" jdbcType="VARCHAR" property="username" />
        <result column="password" jdbcType="VARCHAR" property="password" />
    </resultMap>

    <select id="getUser" resultType="com.joy.entity.User">
        select * from user where id = #{id}
    </select>
</mapper>

启动类Application,新增

@MapperScan("com.joy.mapper") 

浏览器输入访问地址:http://localhost:8080/springboot/getUser/1 即可成功运行。

项目地址:https://github.com/Malone1023/springboot_mybatis

相关文章

  • springboot+Mybatis+mysql示例

    https://start.spring.io 新建项目 pom.xml 文件增加mysql和mybatis配置 ...

  • Springboot+mybatis的CRUD

    搭建一套框架出来: Springboot+Mybatis+Mysql 用的Restful的风格 增删改查对应的是:...

  • SpringBoot使用Mybatis-PageHelper

    前言 之前一篇文章介绍了《SpringBoot+Mybatis+MySql学习》的整合,这一片扩展一下Mybati...

  • SpringBoot+mybatis+mysql

    1.依赖: 2.配置问题: 大家都知道,springBoot的有点就是解决了各种xml的配置问题 3. 这个问题很...

  • Springboot+mybatis+mysql

    在pom.xml文件内将依赖改成compile就行 11.首先创建实体类在com.example.yvans下建立...

  • SpringBoot+Mybatis+MySQL

    开始前的准备: 编辑器IntelliJ IDEA 可以正常使用的MySQL 进入正题 1. 使用IDEA构建一个...

  • springboot-mybatis-mysql-errorCo

    笔者这两天准备搭建一个基于springboot+mybatis+mysql的微服务作为银行业务的基础服务,过程非常...

  • SpringBoot+Mybatis+MySql学习

    介绍一下SpringBoot整合mybatis,数据库选用的是mysql。 首先创建数据库 建表以及插入初始数据(...

  • springboot+mybatis+mysql整合

    一.通过idea建立工程 二.配置文件1.在resources文件夹下建立config文件夹,并创建mybatis...

  • SpringBoot+MyBatis+MySQL读写分离

    1 在发布模块打包,而不是父模块上打包 比如,以下项目目录: 如果要发布 api 就直接在它的模块上打包,而不是在...

网友评论

      本文标题:springboot+Mybatis+mysql示例

      本文链接:https://www.haomeiwen.com/subject/ncubnctx.html