Skip to content

Commit

Permalink
⬆️ update Spring Boot to 2.3.9.RELEASE
Browse files Browse the repository at this point in the history
  • Loading branch information
zidoshare committed Mar 22, 2021
1 parent 16de02c commit d866cf9
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<p align="center">
<img alt="LANGUAGE JAVA" src="https://img.shields.io/badge/language-java-orange.svg">
<img alt="JDK 1.8+" src="https://img.shields.io/badge/JDK-1.8+-green.svg">
<img alt="Spring Boot" src="https://img.shields.io/badge/Spring%20Boot-2.2.11.RELEASE-blue.svg">
<img alt="Spring Boot" src="https://img.shields.io/badge/Spring%20Boot-2.3.9.RELEASE-blue.svg">
</p>

> spring 5.x / spring boot 2.x的restful启动器,节省一杯咖啡的时间,更多的约定,更快的开发
Expand Down
2 changes: 1 addition & 1 deletion coffee-dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<!-- Import dependency management from Spring Boot -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.2.11.RELEASE</version>
<version>2.3.9.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
1 change: 0 additions & 1 deletion coffee-modules/coffee-extra/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
<version>2.2.11.RELEASE</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion coffee-spring-boot-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.11.RELEASE</version>
<version>2.3.9.RELEASE</version>
<relativePath/>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
package site.zido.demo.pojo.params;

import lombok.Data;
import org.hibernate.validator.constraints.Length;
import site.zido.coffee.core.utils.InputConverter;
import site.zido.coffee.core.validations.Phone;
import site.zido.demo.entity.User;

import javax.validation.constraints.Size;

@Data
public class UserParams implements InputConverter<User> {
@Length(min = 6, max = 10)
@Size(min = 6, max = 10)
private String username;
@Length(min = 6, max = 30)
@Size(min = 6, max = 30)
private String password;
@Length(min = 11, max = 11)
@Size(min = 11, max = 11)
@Phone
private String mobile;
private Integer sex = 0;
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.11.RELEASE</version>
<version>2.3.9.RELEASE</version>
<relativePath/>
</parent>
<groupId>site.zido</groupId>
Expand Down

0 comments on commit d866cf9

Please sign in to comment.