Skip to content

Commit e93d916

Browse files
committed
pagehelper-starter 1.1.0
1 parent 79291d4 commit e93d916

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
- [Spring Boot 1.4.3.RELEASE](https://github.com/spring-projects/spring-boot)
44
- [mybatis-spring-boot-starter 1.1.1](https://github.com/mybatis/spring-boot-starter)
55
- [mapper-spring-boot-starter 1.0.0](https://github.com/abel533/mapper-boot-starter)
6-
- [pagehelper-spring-boot-starter 1.0.0](https://github.com/pagehelper/pagehelper-spring-boot)
6+
- [pagehelper-spring-boot-starter 1.1.0](https://github.com/pagehelper/pagehelper-spring-boot)
77

88
## 项目依赖
99
```xml
@@ -23,12 +23,10 @@
2323
<dependency>
2424
<groupId>com.github.pagehelper</groupId>
2525
<artifactId>pagehelper-spring-boot-starter</artifactId>
26-
<version>1.0.0</version>
26+
<version>1.1.0</version>
2727
</dependency>
2828
```
2929

30-
当使用低版本的 Spring Boot 时(例如 1.3 或更低版本),你还可以尝试 mapper 和 pagehelper starter 的 0.1.0 版本(兼容高版本 Spring Boot)。
31-
3230
## application.yml 配置
3331

3432
完整配置可以参考 [src/main/resources/application.yml](https://github.com/abel533/MyBatis-Spring-Boot/blob/master/src/main/resources/application.yml) ,和 MyBatis 相关的部分配置如下:
@@ -73,8 +71,6 @@ pagehelper.params=count=countSql
7371

7472
注意 mapper 配置,因为参数名固定,所以接收参数使用的对象,按照 Spring Boot 配置规则,大写字母都变了带横线的小写字母。针对如 IDENTITY(对应i-d-e-n-t-i-t-y)提供了全小写的 identity 配置,如果 IDE 能自动提示,看自动提示即可。
7573

76-
注意 pagehelper 配置,因为分页插件根据自己的扩展不同,支持的参数也不同,所以不能用固定的对象接收参数,所以这里使用的 `Map<String,String>`,因此参数名是什么这里就写什么,IDE 也不会有自动提示。
77-
7874
## SSM集成的基础项目
7975
>https://github.com/abel533/Mybatis-Spring
8076

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
<groupId>com.fasterxml.jackson.module</groupId>
6363
<artifactId>jackson-module-parameter-names</artifactId>
6464
</dependency>
65-
65+
6666
<dependency>
6767
<groupId>com.alibaba</groupId>
6868
<artifactId>druid</artifactId>
@@ -85,7 +85,7 @@
8585
<dependency>
8686
<groupId>com.github.pagehelper</groupId>
8787
<artifactId>pagehelper-spring-boot-starter</artifactId>
88-
<version>1.0.0</version>
88+
<version>1.1.0</version>
8989
</dependency>
9090
</dependencies>
9191

0 commit comments

Comments
 (0)