升级依赖版本

This commit is contained in:
mazhicheng 2020-06-27 09:46:25 +08:00
parent b3c400a4c1
commit 55f469b74a
6 changed files with 10 additions and 11 deletions

View File

@ -48,7 +48,7 @@ public @interface BindQuery {
Class entity() default NullType.class;
/***
* JOIN连接条件
* JOIN连接条件支持动态的跨表JOIN查询
* @return
*/
String condition() default "";

View File

@ -17,7 +17,7 @@ compile("com.diboot:diboot-file-spring-boot-starter:{latestVersion}")
diboot-file会自动依赖以下jar包无需重复引入
* commons-fileupload: 1.4
* easyexcel:2.x
* okhttp:4.3.x
* okhttp:4.7.x
* thumbnailator: 0.4.9 (图片压缩,不需要可剔除)
* easy-captcha: 1.6.x (验证码,不需要可剔除)

View File

@ -60,7 +60,7 @@ public void addFormatters(FormatterRegistry registry) {
* v2.1.x版本开始extdata扩展字段将不再推荐使用该字段设计目的用于字段冗余的json存储可以通过数据库的json数据类型实现。
devtools从2.1版本开始不再支持extdata的特殊处理。
* v2.1.x版本依赖组件升级为: Spring Boot 2.3.0Mybatis-Plus 3.3.2fastjson 1.2.70。根据您的依赖情况,可能会有依赖冲突需要解决。
* v2.1.x版本依赖组件升级为: Spring Boot 2.3.xMybatis-Plus 3.3.xfastjson 1.2.7x。根据您的依赖情况,可能会有依赖冲突需要解决。
#### 2. diboot-devtools
* v2.1版本开始,配置参数:

View File

@ -38,13 +38,13 @@
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>easyexcel</artifactId>
<version>2.2.3</version>
<version>2.2.6</version>
</dependency>
<!-- http -->
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.5.0</version>
<version>4.7.2</version>
</dependency>
<!-- 图片压缩 -->
<dependency>
@ -57,7 +57,6 @@
<groupId>com.github.whvcse</groupId>
<artifactId>easy-captcha</artifactId>
<version>1.6.2</version>
<scope>provided</scope>
</dependency>
</dependencies>

View File

@ -30,7 +30,7 @@
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.5.0</version>
<version>4.7.2</version>
<optional>true</optional>
</dependency>

View File

@ -7,7 +7,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.0.RELEASE</version>
<version>2.3.1.RELEASE</version>
<relativePath/>
</parent>
@ -25,7 +25,7 @@
<properties>
<java.version>1.8</java.version>
<springboot.version>2.3.0.RELEASE</springboot.version>
<springboot.version>2.3.1.RELEASE</springboot.version>
</properties>
<dependencies>
@ -62,7 +62,7 @@
</exclusion>
</exclusions>
</dependency>
<!-- SpringBoot 2.3.0 新增依赖 -->
<!-- SpringBoot 2.3.x 新增依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
@ -81,7 +81,7 @@
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.70</version>
<version>1.2.71</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>