注意:
SpringBoot 2.4版本是今年的;最好用2.1版本的;
SpringBoot中的Mysql的默认版本是8点多的,我们建议用5点多的;所以最好自己指定一下mysql的版本号;
步骤:
(1)导入依赖:
~mysql依赖;
<!--mysql依赖 我们建议用5点多的;所以最好自己指定一下mysql的版本号;-->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.36</version>
</dependency>
~mybatis依赖(不要用原来的方式,原来的方式需要自己配置,我们想省配置,应该用Mybatis启动器);所以我们应该导入Mybatis启动器依赖;但是Spring官方并没有给我们整合Mybatis启动器依赖,而是Mybatis官方给我们整合的启动器依赖,所以我们导入的依赖不是SpringBoot中包含的,需要我们自己写版本号;
区别:下面这是mybaits启动器依赖,就不是springBoot官方的,他的标签下面指定的就是mybatis-spring-…开头的;
<!--mybatis启动器依赖-->
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.1.2</version>
</dependency>
这是springboot官方的启动器依赖,标签下面开头的就是spring-boot-…
<!--添加thymeleaf模板引擎依赖,展示页面-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
(2)写一个实体类
@Data
@NoArgsConstructor
@AllArgsConstructor
public class Account {
private Integer id;
private String name;
private String grade;
}
(3)写一个Mapper接口,用于写执行的方法相当于以前的Service
public interface AccountMapper {//接口承接实体类
List<Account> list();
}
(4)写一个Mabatis的映射文件mapper.xml 里面写xml ;这个mapper.xml 返回值是Account那么属于那个类的SQL呢?当然是我们写的接口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">
<!--namespace = 所需实现的接口全限定名 就是给哪个接口指定SQL语句的-->
<mapper namespace="com.xfx.demo.mapper.AccountMapper">
<!--属于这个包下的mapper接口类,也就是以前的DAO类-->
<select id="list" resultType="com.xfx.demo.pojo.Account">
<!--返回值是包下的实体类-->
Select * from subject
</select>
</mapper>
(5)在启动类写注解@MapperScan(baskPackages=”.....mapper”)
用于扫描我们写的接口类mapper ;我们写的接口需要扫描才能进入mybatis;
**@SpringBootApplication
@MapperScan(basePackages = "com.xfx.demo.mapper")//接口扫描
// 正常情况下需要把接口扫描到Mybatis
//配置文件和接口还不一致还需要配置映射
//用于扫描mapper类
public class DemoApplication {
@Bean //因为这也是一个配置类,所以就能用@Bean标签
public Date date(){//加上@Bean注解把方法返回值交给容器中;
return new Date();
}
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}**
(6)配置文件配置mapper.xml 位置;我们写了注解用于扫描我们写的接口,那么装有SQL语句的mapper.xml 文件如何进行扫描呢?在配置文件application.yml中定义;
#定义Mybatis映射文件的位置
mybatis:
mapper-locations: classpath:/mapper/*.xml #扫描/mapper/ 路径下所有的xml文件
(7)配置数据库设置; 我们配置好要读取数据库的类之后还差连接数据库的配置,SpringBoot有默认的数据库连接池,我们直接在配置文件中配置就好;
#配置连接池
#只要加载了Mybatis启动类依赖下面的会自动配置好,只需我们提供参数
spring:
datasource:
type: com.zaxxer.hikari.HikariDataSource #连接池的类型,默认
driver-class-name: com.mysql.jdbc.Driver #驱动名
url: jdbc:mysql://localhost:3306/xiaomi?useUnicode=true&characterEncoding=utf8
username: root
password:
(8)配置Controller类 ;数据库连接好了就需要向接受用户请求,向页面传输数据了;
直接返回字符串(JSON)格式的;
@Autowired
private AccountMapper accountMapper;
@RequestMapping("/list")
public List<Account> list(){
return accountMapper.list();
}
按理说我们返回一个JSON格式的数据,我们应该添加Jackson依赖或者是fastjson依赖;但是我们并没有导入,就是因为我们导入的web启动器依赖里面包括了;
。。。。。。。。。。。。。
嘻哈的简写笔记
。。。。。。。。。。。。。