diff --git a/README.md b/README.md index a68117d..5c9d14b 100644 --- a/README.md +++ b/README.md @@ -16,13 +16,11 @@ # 前言 -**项目PHP前端地址:** https://github.com/lmxdawn/vue-admin-html **项目JAVA前端地址:** https://github.com/lmxdawn/vue-admin-html-java **项目JAVA后端地址:** https://github.com/lmxdawn/vue-admin-java -**项目PHP后端地址:** https://github.com/lmxdawn/vue-admin-php # 欢迎 star @@ -57,4 +55,4 @@ [MIT](https://github.com/lmxdawn/vue-admin-java/blob/master/LICENSE) -Copyright (c) 2018 lmxdawn \ No newline at end of file +Copyright (c) 2018 lmxdawn diff --git a/api-admin/pom.xml b/api-admin/pom.xml index e8c9a97..02670b5 100644 --- a/api-admin/pom.xml +++ b/api-admin/pom.xml @@ -19,6 +19,11 @@ api-common + + org.apache.commons + commons-lang3 + + org.springframework.boot spring-boot-starter-web diff --git a/api-admin/src/main/java/com/lmxdawn/api/admin/converter/AdSaveForm2AdConverter.java b/api-admin/src/main/java/com/lmxdawn/api/admin/converter/AdSaveForm2AdConverter.java index 8ba613a..a474858 100644 --- a/api-admin/src/main/java/com/lmxdawn/api/admin/converter/AdSaveForm2AdConverter.java +++ b/api-admin/src/main/java/com/lmxdawn/api/admin/converter/AdSaveForm2AdConverter.java @@ -3,7 +3,7 @@ import com.lmxdawn.api.admin.entity.ad.Ad; import com.lmxdawn.api.admin.req.ad.AdSaveRequest; -import com.sun.deploy.util.StringUtils; +import org.apache.commons.lang3.StringUtils; import org.springframework.beans.BeanUtils; import java.util.ArrayList; diff --git a/api-common/pom.xml b/api-common/pom.xml index 0839583..31393a8 100644 --- a/api-common/pom.xml +++ b/api-common/pom.xml @@ -19,6 +19,11 @@ true + + org.apache.commons + commons-lang3 + + \ No newline at end of file diff --git a/api-common/src/main/java/com/lmxdawn/api/common/converter/LongList2StringConverter.java b/api-common/src/main/java/com/lmxdawn/api/common/converter/LongList2StringConverter.java index c475bb7..850cf8c 100644 --- a/api-common/src/main/java/com/lmxdawn/api/common/converter/LongList2StringConverter.java +++ b/api-common/src/main/java/com/lmxdawn/api/common/converter/LongList2StringConverter.java @@ -1,7 +1,7 @@ package com.lmxdawn.api.common.converter; -import com.sun.deploy.util.StringUtils; +import org.apache.commons.lang3.StringUtils; import java.util.*; diff --git a/pom.xml b/pom.xml index 6021161..674434c 100644 --- a/pom.xml +++ b/pom.xml @@ -42,6 +42,13 @@ 1.2.51 + + + org.apache.commons + commons-lang3 + 3.9 + +