一、创建好项目,添加完pom.xml,以及数据源相关配置以后。
二、编辑对象。
1.添加pojo的持久属性。注解@Data,提供get,set等方法。@Accessors(chain=true)表示实现链式加载。chain为一个布尔值,如果为true生成的set方法返回this,为false生成的set方法是void类型。默认为false,除非当fluent为true时,chain默认则为true, chain = true ,对对象设置时候可以使用Lambda表达式。
链式加载底层实现的是返回每一个对象。
package com.jt.pojo;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.Accessors;
@Data //get/set/toString/equals
@Accessors(chain = true) //实现链式加载
@AllArgsConstructor //全参构造
@NoArgsConstructor //无参构造
public class User {
//注意对象使用包装类型
private Integer id; //id默认值0 null
private String name;
private Integer age;
private String sex;
/* public User setId(Integer id){
this.id = id;
return this;
}
public User setName(String name){
this.name = name;
return this;
}*/
}
启动链式加载和没有启动链式加载的区别
启动链式加载。下面是链式加载的例子,不是创建项目的测试代码
@Test
public void insert() {
User user =new User();
user.setName("小月")
.setAge(17)
.setSex("女");
userMapper.insert(user);
System.out.println("未成年");
}
没启动链式加载
@Test
public void insert() {
User user =new User();
user.setName("小月")
user.setAge(17)
user.setSex("女");
userMapper.insert(user);
System.out.println("未成年");
}
从上面可以看出,启动链式加载,简化代码对对象的使用,如果对象的使用是成千上万,链式加载只需要写几个或一个,后期维护,改写也比较容易。
对于注解@Accessors其他的使用
@Accessors(fluent = “true/false”)
fluent为一个布尔值,中文含义是流畅的,默认为false, 如果为true 生成的get/set方法则没有set/get前缀,都是基础属性名, 且setter方法返回当前对象
@Data
@Accessors(fluent=true) //链式加载
public class User {
private Integer id;
private String name;
//以下是加了注解之后的底层class
public Integer id() {
return this.id;
}
public String name() {
return this.name;
}
public User id(final Integer id) {
this.id = id;
return this;
}
public User name(final String name) {
this.name = name;
return this;
}
@Accessors(prefix = “s”)
使用prefix属性,getter和setter方法会忽视属性名的指定前缀(遵守驼峰命名)
prefix为一系列string类型,可以指定前缀,生成get/set方法时会去掉指定的前缀
。没理解明白,使用时在看吧。
@Getter
@Accessors(prefix = "s") //链式加载
public class User {
private Integer id;
private String name;
private Integer age;
private String sex;
}
三、定义数据访问层,提供findAll()方法。
package com.jt.mapper;
import com.jt.pojo.User;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
@Mapper
public interface UserMapper {
List<User> findAll(); //查询全部的用户记录
}
四、编辑YML配置
server:
port: 8090
servlet:
context-path: /
spring:
datasource:
url: jdbc:mysql://127.0.0.1:3306/jtdb?serverTimezone=GMT%2B8&useUnicode
=true&characterEncoding=utf8&autoReconnect=true&allowMultiQueries=true
username: root
password: root
#springboot整合mybatis
mybatis:
#定义别名包
type-aliases-package: com.jt.pojo
#加载Mapper映射文件
mapper-locations: classpath:/mybatis/mappers/*.xml
#开启驼峰映射
configuration:
map-underscore-to-camel-case: true
五、编辑文件解析
<?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.jt.mapper.UserMapper">
<!--
1.通过别名包定义用户的类型,
原理:当返回值结果resultType封装对象时,
自动的拼接别名包路径 com.jt.pojo.User
2.开启驼峰规则的说明
字段: user_id,user_name,user_age
属性: userId ,userName ,userAge
设定:开启驼峰映射规则
user_id 去除多余的_ 之后首字母大写 userId
注意事项: 如果开启了驼峰映射规则,则按照要求实现.
-->
<select id="findAll" resultType="User">
select * from user
</select>
</mapper>
六、这样就可以测试了。
总结: 在编辑YML配置时候,注意上述查询,需要数据库里表创建好进行查询。