mybatis-flex
时间: 2023-09-29 07:08:15 浏览: 233
mybatis的介绍
Mybatis-Flex是一个优雅的Mybatis增强框架,它非常轻量、同时拥有极高的性能与灵活性。它可以轻松地与任何数据库进行连接,并通过内置的QueryWrapper帮助我们减少SQL编写的工作量,同时减少出错的可能性。如果只使用Mybatis而没有使用Spring的场景,可以通过以下依赖引入Mybatis-Flex核心库:
```xml
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-core</artifactId>
<version>1.2.0</version>
</dependency>
```
如果在使用Mybatis的同时也使用了Spring框架,可以通过以下依赖引入Mybatis-Flex的Spring支持库:
```xml
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-spring</artifactId>
<version>1.2.0</version>
</dependency>
```
这样就可以在Spring项目中使用Mybatis-Flex了。[1][2][3]
阅读全文