Springboot整合Mybatispuls的实例详解

Springboot整合MybatisPuls

Maven导入依赖,主要只需导入MyBatisPuls


      org.springframework.boot
      spring-boot-starter-data-jdbc
    
    
      com.baomidou
      mybatis-plus-boot-starter
      3.0.1
    
    
      mysql
      mysql-connector-java
      runtime
    
    
      org.projectlombok
      lombok
      true
    

配置数据源

spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/springboot?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC
server.port=8082

编写实体类

@Data
@AllArgsConstructor
@NoArgsConstructor
@TableName("users")//连接的表名
public class Users implements Serializable {
  @TableId("id")标记该变量为主键
  private Integer id;
  private String Account;
  @TableField("passwraod" )//如果实体类变量和数据库不同使用
  private String password;
  private Integer Authority;
}

mapper接口编写
继承BaseMapper<这里为实体类>

@org.apache.ibatis.annotations.Mapper//让Spring容器扫描该类为Mapper
@Repository
public interface Mapper extends BaseMapper {
}

BaseMapper源码

Springboot整合Mybatispuls的实例详解_第1张图片

实现接口方法

@RestController
public class Control {
  @Autowired
  Mapper mapper;
  @RequestMapping("/hello")
  public Users Select(){
    Users users = mapper.selectById(1);
    return users;
  }

}

到此这篇关于Springboot整合Mybatispuls的文章就介绍到这了,更多相关Springboot整合Mybatispuls内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(Springboot整合Mybatispuls的实例详解)