mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 00:58:24 +08:00
update readme
This commit is contained in:
parent
e502f2fe01
commit
3529570ae9
34
docs/zh/maven.md
Normal file
34
docs/zh/maven.md
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
# Maven 安装
|
||||||
|
|
||||||
|
> 以下的 xml maven 依赖示例中,可能并非最新的 Mybatis-Flex 版本,请自行查看最新版本,并修改版本号。
|
||||||
|
|
||||||
|
|
||||||
|
1、只用到了 Mybatis,没用到 Spring 等框架的场景:
|
||||||
|
|
||||||
|
```xml
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.mybatis-flex</groupId>
|
||||||
|
<artifactId>mybatis-flex-core</artifactId>
|
||||||
|
<version>1.0.0-beta.1</version>
|
||||||
|
</dependency>
|
||||||
|
```
|
||||||
|
|
||||||
|
2、用到了 Spring 的场景
|
||||||
|
|
||||||
|
```xml
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.mybatis-flex</groupId>
|
||||||
|
<artifactId>mybatis-flex-spring</artifactId>
|
||||||
|
<version>1.0.0-beta.1</version>
|
||||||
|
</dependency>
|
||||||
|
``````
|
||||||
|
|
||||||
|
2、用到了 Spring Boot 的场景
|
||||||
|
|
||||||
|
```xml
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.mybatis-flex</groupId>
|
||||||
|
<artifactId>mybatis-flex-spring-boot-starter</artifactId>
|
||||||
|
<version>1.0.0-beta.1</version>
|
||||||
|
</dependency>
|
||||||
|
```
|
||||||
12
readme_zh.md
12
readme_zh.md
@ -11,6 +11,12 @@
|
|||||||
- 6、极其友好的 SQL 联动查询,IDE 自动提示不再担心出错
|
- 6、极其友好的 SQL 联动查询,IDE 自动提示不再担心出错
|
||||||
- 7、更多小惊喜
|
- 7、更多小惊喜
|
||||||
|
|
||||||
|
## 开始
|
||||||
|
|
||||||
|
- [Maven 依赖](./docs/zh/maven.md)
|
||||||
|
- [示例项目](./mybatis-flex-test)
|
||||||
|
|
||||||
|
|
||||||
## QQ 群
|
## QQ 群
|
||||||
|
|
||||||
群号: 532992631
|
群号: 532992631
|
||||||
@ -424,8 +430,8 @@ public class Account {
|
|||||||
|
|
||||||
## 更多示例
|
## 更多示例
|
||||||
|
|
||||||
- 1、[Mybatis-Flex 原生(无其他依赖)](./mybatis-flex-test/mybatis-flex-native-test)
|
- 示例 1:[Mybatis-Flex 原生(非 Spring)](./mybatis-flex-test/mybatis-flex-native-test)
|
||||||
- 2、[Mybatis-Flex with Spring](./mybatis-flex-test/mybatis-flex-spring-test)
|
- 示例 2:[Mybatis-Flex with Spring](./mybatis-flex-test/mybatis-flex-spring-test)
|
||||||
- 3、[Mybatis-Flex with Spring boot](./mybatis-flex-test/mybatis-flex-spring-boot-test)
|
- 示例 3:[Mybatis-Flex with Spring boot](./mybatis-flex-test/mybatis-flex-spring-boot-test)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user