Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
matrix
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
CI / CD
CI / CD
Pipelines
Schedules
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
mall
arch
matrix
Commits
51eca784
Commit
51eca784
authored
Aug 13, 2019
by
qiuweili123
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.0.12.RELEASE
parent
472ca328
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
66 additions
and
83 deletions
+66
-83
pom.xml
common-core/pom.xml
+1
-40
AbsBaseBean.java
common-core/src/main/java/com/secoo/mall/common/core/bean/AbsBaseBean.java
+0
-6
BusinessException.java
common-core/src/main/java/com/secoo/mall/common/core/exception/BusinessException.java
+1
-2
pom.xml
common-util/pom.xml
+14
-5
BeanChecker.java
common-util/src/main/java/com/secoo/mall/common/util/checker/BeanChecker.java
+1
-1
pom.xml
config-starter/pom.xml
+1
-1
pom.xml
elasticsearch-starter/pom.xml
+1
-1
pom.xml
logger-starter/pom.xml
+1
-1
pom.xml
logger-starter/secoo-log-starter/pom.xml
+1
-1
pom.xml
logger-starter/secoo-log/pom.xml
+1
-1
pom.xml
mongodb-starter/pom.xml
+1
-1
pom.xml
monitor-starter/pom.xml
+5
-1
pom.xml
mybatis-starter/pom.xml
+10
-1
AopTransaction.java
mybatis-starter/src/main/java/com/secoo/mall/mybatis/aop/AopTransaction.java
+1
-1
pom.xml
openfeign-starter/pom.xml
+1
-1
pom.xml
pom.xml
+14
-14
pom.xml
protocol-starter/pom.xml
+8
-1
BateEnvCondition.java
protocol-starter/src/main/java/com/secoo/mall/common/condition/BateEnvCondition.java
+1
-1
MatrixSwaggerAutoConfiguration.java
protocol-starter/src/main/java/com/secoo/mall/common/config/MatrixSwaggerAutoConfiguration.java
+1
-1
pom.xml
redis-starter/pom.xml
+1
-1
pom.xml
rocketmq-starter/pom.xml
+1
-1
No files found.
common-core/pom.xml
View file @
51eca784
...
@@ -5,49 +5,11 @@
...
@@ -5,49 +5,11 @@
<parent>
<parent>
<artifactId>
matrix
</artifactId>
<artifactId>
matrix
</artifactId>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
common-core
</artifactId>
<artifactId>
common-core
</artifactId>
<dependencies>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter
</artifactId>
<scope>
compile
</scope>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-aop
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-actuator
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-tx
</artifactId>
</dependency>
<!--防止编译出现错误提示-->
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-configuration-processor
</artifactId>
</dependency>
<dependency>
<groupId>
joda-time
</groupId>
<artifactId>
joda-time
</artifactId>
</dependency>
<dependency>
<groupId>
org.apache.commons
</groupId>
<artifactId>
commons-lang3
</artifactId>
</dependency>
<dependency>
<groupId>
com.alibaba
</groupId>
<artifactId>
fastjson
</artifactId>
</dependency>
</dependencies>
</project>
</project>
\ No newline at end of file
common-core/src/main/java/com/secoo/mall/common/core/bean/AbsBaseBean.java
View file @
51eca784
package
com
.
secoo
.
mall
.
common
.
core
.
bean
;
package
com
.
secoo
.
mall
.
common
.
core
.
bean
;
import
org.apache.commons.lang3.builder.ToStringBuilder
;
import
java.io.Serializable
;
import
java.io.Serializable
;
public
abstract
class
AbsBaseBean
<
T
>
implements
Serializable
{
public
abstract
class
AbsBaseBean
<
T
>
implements
Serializable
{
@Override
public
String
toString
()
{
return
ToStringBuilder
.
reflectionToString
(
this
);
}
}
}
common-core/src/main/java/com/secoo/mall/common/core/exception/BusinessException.java
View file @
51eca784
...
@@ -2,7 +2,6 @@ package com.secoo.mall.common.core.exception;
...
@@ -2,7 +2,6 @@ package com.secoo.mall.common.core.exception;
import
com.secoo.mall.common.core.errorcode.ErrorCode
;
import
com.secoo.mall.common.core.errorcode.ErrorCode
;
import
org.apache.commons.lang3.StringUtils
;
public
class
BusinessException
extends
RuntimeException
{
public
class
BusinessException
extends
RuntimeException
{
private
ErrorCode
errorCode
;
private
ErrorCode
errorCode
;
...
@@ -71,7 +70,7 @@ public class BusinessException extends RuntimeException {
...
@@ -71,7 +70,7 @@ public class BusinessException extends RuntimeException {
public
String
getMsg
()
{
public
String
getMsg
()
{
if
(
StringUtils
.
isNotEmpty
(
this
.
msg
))
{
if
(
!(
this
.
msg
==
null
||
this
.
msg
.
length
()
==
0
))
{
return
String
.
format
(
this
.
msg
,
this
.
args
);
return
String
.
format
(
this
.
msg
,
this
.
args
);
}
}
return
msg
;
return
msg
;
...
...
common-util/pom.xml
View file @
51eca784
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<artifactId>
matrix
</artifactId>
<artifactId>
matrix
</artifactId>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
...
@@ -31,10 +31,6 @@
...
@@ -31,10 +31,6 @@
<artifactId>
common-core
</artifactId>
<artifactId>
common-core
</artifactId>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter
</artifactId>
</dependency>
<dependency>
<groupId>
com.google.guava
</groupId>
<groupId>
com.google.guava
</groupId>
<artifactId>
guava
</artifactId>
<artifactId>
guava
</artifactId>
</dependency>
</dependency>
...
@@ -42,6 +38,19 @@
...
@@ -42,6 +38,19 @@
<groupId>
com.alibaba
</groupId>
<groupId>
com.alibaba
</groupId>
<artifactId>
fastjson
</artifactId>
<artifactId>
fastjson
</artifactId>
</dependency>
</dependency>
<dependency>
<groupId>
joda-time
</groupId>
<artifactId>
joda-time
</artifactId>
</dependency>
<dependency>
<groupId>
ch.qos.logback
</groupId>
<artifactId>
logback-classic
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-context
</artifactId>
</dependency>
</dependencies>
</dependencies>
...
...
common-util/src/main/java/com/secoo/mall/common/util/checker/BeanChecker.java
View file @
51eca784
...
@@ -5,8 +5,8 @@ import com.secoo.mall.common.core.errorcode.ErrorCode;
...
@@ -5,8 +5,8 @@ import com.secoo.mall.common.core.errorcode.ErrorCode;
import
com.secoo.mall.common.core.exception.ParameterException
;
import
com.secoo.mall.common.core.exception.ParameterException
;
import
com.secoo.mall.common.util.colletion.MapUtil
;
import
com.secoo.mall.common.util.colletion.MapUtil
;
import
com.secoo.mall.common.util.decimal.DecimalUtil
;
import
com.secoo.mall.common.util.decimal.DecimalUtil
;
import
org.apache.commons.collections.CollectionUtils
;
import
org.apache.commons.lang3.StringUtils
;
import
org.apache.commons.lang3.StringUtils
;
import
org.springframework.util.CollectionUtils
;
import
java.math.BigDecimal
;
import
java.math.BigDecimal
;
import
java.util.Collection
;
import
java.util.Collection
;
...
...
config-starter/pom.xml
View file @
51eca784
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<artifactId>
matrix
</artifactId>
<artifactId>
matrix
</artifactId>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
...
...
elasticsearch-starter/pom.xml
View file @
51eca784
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<artifactId>
matrix
</artifactId>
<artifactId>
matrix
</artifactId>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
...
...
logger-starter/pom.xml
View file @
51eca784
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<artifactId>
matrix
</artifactId>
<artifactId>
matrix
</artifactId>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
...
...
logger-starter/secoo-log-starter/pom.xml
View file @
51eca784
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<artifactId>
logger-starter
</artifactId>
<artifactId>
logger-starter
</artifactId>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
...
...
logger-starter/secoo-log/pom.xml
View file @
51eca784
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<artifactId>
logger-starter
</artifactId>
<artifactId>
logger-starter
</artifactId>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
...
...
mongodb-starter/pom.xml
View file @
51eca784
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<artifactId>
matrix
</artifactId>
<artifactId>
matrix
</artifactId>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
...
...
monitor-starter/pom.xml
View file @
51eca784
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<artifactId>
matrix
</artifactId>
<artifactId>
matrix
</artifactId>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
...
@@ -14,6 +14,10 @@
...
@@ -14,6 +14,10 @@
<dependencies>
<dependencies>
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-actuator
</artifactId>
</dependency>
<dependency>
<groupId>
ch.qos.logback
</groupId>
<groupId>
ch.qos.logback
</groupId>
<artifactId>
logback-classic
</artifactId>
<artifactId>
logback-classic
</artifactId>
</dependency>
</dependency>
...
...
mybatis-starter/pom.xml
View file @
51eca784
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<artifactId>
matrix
</artifactId>
<artifactId>
matrix
</artifactId>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
...
@@ -28,5 +28,13 @@
...
@@ -28,5 +28,13 @@
<groupId>
mysql
</groupId>
<groupId>
mysql
</groupId>
<artifactId>
mysql-connector-java
</artifactId>
<artifactId>
mysql-connector-java
</artifactId>
</dependency>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-aop
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-tx
</artifactId>
</dependency>
</dependencies>
</dependencies>
</project>
</project>
\ No newline at end of file
common-core/src/main/java/com/secoo/mall/common/core
/aop/AopTransaction.java
→
mybatis-starter/src/main/java/com/secoo/mall/mybatis
/aop/AopTransaction.java
View file @
51eca784
package
com
.
secoo
.
mall
.
common
.
core
.
aop
;
package
com
.
secoo
.
mall
.
mybatis
.
aop
;
import
org.aspectj.lang.ProceedingJoinPoint
;
import
org.aspectj.lang.ProceedingJoinPoint
;
import
org.aspectj.lang.annotation.Around
;
import
org.aspectj.lang.annotation.Around
;
...
...
openfeign-starter/pom.xml
View file @
51eca784
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<artifactId>
matrix
</artifactId>
<artifactId>
matrix
</artifactId>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
...
...
pom.xml
View file @
51eca784
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<artifactId>
matrix
</artifactId>
<artifactId>
matrix
</artifactId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
<packaging>
pom
</packaging>
<packaging>
pom
</packaging>
...
@@ -45,67 +45,67 @@
...
@@ -45,67 +45,67 @@
<dependency>
<dependency>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<artifactId>
secoo-log-starter
</artifactId>
<artifactId>
secoo-log-starter
</artifactId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<artifactId>
secoo-log
</artifactId>
<artifactId>
secoo-log
</artifactId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<artifactId>
monitor-starter
</artifactId>
<artifactId>
monitor-starter
</artifactId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<artifactId>
common-core
</artifactId>
<artifactId>
common-core
</artifactId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<artifactId>
config-starter
</artifactId>
<artifactId>
config-starter
</artifactId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<artifactId>
common-util
</artifactId>
<artifactId>
common-util
</artifactId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<artifactId>
redis-starter
</artifactId>
<artifactId>
redis-starter
</artifactId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<artifactId>
mybatis-starter
</artifactId>
<artifactId>
mybatis-starter
</artifactId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<artifactId>
mongodb-starter
</artifactId>
<artifactId>
mongodb-starter
</artifactId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<artifactId>
elasticsearch-starter
</artifactId>
<artifactId>
elasticsearch-starter
</artifactId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<artifactId>
protocol-starter
</artifactId>
<artifactId>
protocol-starter
</artifactId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<artifactId>
rocketmq-starter
</artifactId>
<artifactId>
rocketmq-starter
</artifactId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<artifactId>
openfeign-starter
</artifactId>
<artifactId>
openfeign-starter
</artifactId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</dependency>
</dependency>
<dependency>
<dependency>
...
...
protocol-starter/pom.xml
View file @
51eca784
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<artifactId>
matrix
</artifactId>
<artifactId>
matrix
</artifactId>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
...
@@ -16,6 +16,13 @@
...
@@ -16,6 +16,13 @@
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<artifactId>
common-util
</artifactId>
<artifactId>
common-util
</artifactId>
</dependency>
</dependency>
<!--防止编译出现错误提示-->
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-configuration-processor
</artifactId>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-web
</artifactId>
<artifactId>
spring-boot-starter-web
</artifactId>
...
...
common-core/src/main/java/com/secoo/mall/common/core
/condition/BateEnvCondition.java
→
protocol-starter/src/main/java/com/secoo/mall/common
/condition/BateEnvCondition.java
View file @
51eca784
package
com
.
secoo
.
mall
.
common
.
co
re
.
co
ndition
;
package
com
.
secoo
.
mall
.
common
.
condition
;
import
com.secoo.mall.common.constant.CommonConstant
;
import
com.secoo.mall.common.constant.CommonConstant
;
...
...
protocol-starter/src/main/java/com/secoo/mall/common/config/MatrixSwaggerAutoConfiguration.java
View file @
51eca784
package
com
.
secoo
.
mall
.
common
.
config
;
package
com
.
secoo
.
mall
.
common
.
config
;
import
com.github.xiaoymin.swaggerbootstrapui.annotations.EnableSwaggerBootstrapUI
;
import
com.github.xiaoymin.swaggerbootstrapui.annotations.EnableSwaggerBootstrapUI
;
import
com.secoo.mall.common.co
re.co
ndition.BateEnvCondition
;
import
com.secoo.mall.common.condition.BateEnvCondition
;
import
com.secoo.mall.dubbo.swagger.annotations.EnableDubboSwagger
;
import
com.secoo.mall.dubbo.swagger.annotations.EnableDubboSwagger
;
import
com.secoo.mall.web.annotation.ApiController
;
import
com.secoo.mall.web.annotation.ApiController
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.beans.factory.annotation.Value
;
...
...
redis-starter/pom.xml
View file @
51eca784
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<artifactId>
matrix
</artifactId>
<artifactId>
matrix
</artifactId>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
...
...
rocketmq-starter/pom.xml
View file @
51eca784
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<artifactId>
matrix
</artifactId>
<artifactId>
matrix
</artifactId>
<groupId>
com.secoo.mall
</groupId>
<groupId>
com.secoo.mall
</groupId>
<version>
1.0.
0-SNAPSHOT
</version>
<version>
1.0.
12.RELEASE
</version>
</parent>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment