java springboot tk.mybatis
springboot +tkmybatis + generator+单元测试 https://blog.csdn.net/wlwork66/article/details/99637428
创建数据库: miner 创建数据库表:
DROP TABLE IF EXISTS `country`;
CREATE TABLE `country` (
`Id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
`countryname` varchar(255) DEFAULT NULL COMMENT '名称',
`countrycode` varchar(255) DEFAULT NULL COMMENT '代码',
PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='国家信息';
insert into country values(1,'china','86');
insert into country values(2,'japan','77');
springboot +tkmybatis + generator+单元测试.zip
Java之【SpringBoot+tk.Mybatis】(5分钟搭建WEB工程-手把手)
https://code100.blog.csdn.net/article/details/124000410
step1
为了简化开发,可以集成tk,tkmybatis是在mybatis框架的基础上提供了很多工具,让开发更加高效,下面来看看这个框架的基本使用,后面会对相关源码进行分析,感兴趣的同学可以看一下,挺不错的一个工具。
引入依赖
集成tkmybatis就不需要再次引入mybatis的相关包了,已经被封装提在tk中。
删掉多余的文件
增加web接口
BookController.java
package com.itheima.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/books")
public class BookController {
@GetMapping
public String getById() {
System.out.println("springboot is running... ");
return "springboot is running...";
}
}
然后 直接 执行 : http://127.0.0.1:8080/books
|