SpringBoot使用MyBatis-Flex实现灵活的数据库访问,
分享于 点击 22469 次 点评:9
SpringBoot使用MyBatis-Flex实现灵活的数据库访问,
目录
- 创建数据库表
- 创建 Spring Boot 项目,并添加 Maven 依赖
- 对 Spring Boot 项目进行配置
- 编写实体类和 Mapper 接口
- 开始使用
创建数据库表
CREATE TABLE IF NOT EXISTS `tb_account` ( `id` INTEGER PRIMARY KEY auto_increment, `user_name` VARCHAR(100), `age` INTEGER, `birthday` DATETIME ); INSERT INTO tb_account(id, user_name, age, birthday) VALUES (1, '张三', 18, '2020-01-11'), (2, '李四', 19, '2021-03-21');
创建 Spring Boot 项目,并添加 Maven 依赖
可以使用 Spring Initializer 快速初始化一个 Spring Boot 工程
需要添加的 Maven 主要依赖示例:
<dependencies> <dependency> <groupId>com.mybatis-flex</groupId> <artifactId>mybatis-flex-spring-boot-starter</artifactId> <version>1.8.8</version> </dependency> <dependency> <groupId>com.mysql</groupId> <artifactId>mysql-connector-j</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>com.zaxxer</groupId> <artifactId>HikariCP</artifactId> </dependency> <!-- for test only --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies>
注意: 如果您当前使用的是 SpringBoot v3.x 版本,需要把依赖 mybatis-flex-spring-boot-starter 修改为:mybatis-flex-spring-boot3-starter, 如下代码所示:
<dependencies> <dependency> <groupId>com.mybatis-flex</groupId> <artifactId>mybatis-flex-spring-boot3-starter</artifactId> <version>1.8.8</version> </dependency> <dependency> <groupId>com.mysql</groupId> <artifactId>mysql-connector-j</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>com.zaxxer</groupId> <artifactId>HikariCP</artifactId> </dependency> <!-- for test only --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies>
对 Spring Boot 项目进行配置
在 application.yml 中配置数据源:
# DataSource Config spring: datasource: url: jdbc:mysql://localhost:3306/flex_test username: root password: 12345678
在 Spring Boot 启动类中添加 @MapperScan 注解,扫描 Mapper 文件夹:
@SpringBootApplication @MapperScan("com.mybatisflex.test.mapper") public class MybatisFlexTestApplication { public static void main(String[] args) { SpringApplication.run(MybatisFlexTestApplication.class, args); } }
编写实体类和 Mapper 接口
这里使用了 Lombok 来简化代码。
@Data @Table("tb_account") public class Account { @Id(keyType = KeyType.Auto) private Long id; private String userName; private Integer age; private Date birthday; }
- 使用 @Table(“tb_account”) 设置实体类与表名的映射关系
- 使用 @Id(keyType = KeyType.Auto) 标识主键为自增
Mapper 接口继承 BaseMapper 接口:
public interface AccountMapper extends BaseMapper<Account> {}
开始使用
添加测试类,进行功能测试:
import static com.mybatisflex.test.entity.table.AccountTableDef.ACCOUNT; @SpringBootTest class MybatisFlexTestApplicationTests { @Autowired private AccountMapper accountMapper; @Test void contextLoads() { QueryWrapper queryWrapper = QueryWrapper.create() .select() .where(ACCOUNT.AGE.eq(18)); Account account = accountMapper.selectOneByQuery(queryWrapper); System.out.println(account); } }
控制台输出:
Account(id=1, userName=张三, age=18, birthday=Sat Jan 11 00:00:00 CST 2020)
以上的 示例 中, ACCOUNT 为 MyBatis-Flex 通过 APT 自动生成,只需通过静态导入即可,无需手动编码。更多查看 APT 文档。
注意:在构建Queruwrapper的时候ACCOUNT这个地方会报红,是因为项目没有编译,编译一下就好了。
到此这篇关于SpringBoot使用MyBatis-Flex实现灵活的数据库访问的文章就介绍到这了,更多相关SpringBoot MyBatisFlex数据库访问内容请搜索3672js教程以前的文章或继续浏览下面的相关文章希望大家以后多多支持3672js教程!
您可能感兴趣的文章:- mybatis-flex实现链式操作的示例代码
- mybatis-flex实现多数据源操作
- MyBatis-Flex实现多表联查(自动映射)
- Mybatis增强版MyBatis-Flex的具体使用
- Springboot集成Mybatis-Flex的示例详解
- mybatis-flex与springBoot整合的实现示例
- SpringBoot中MyBatis-Flex的集成和使用实现
用户点评