java110 лет назад: 6
Родитель
Сommit
323a30e396

+ 1 - 4
Api/pom.xml

@@ -39,10 +39,7 @@
             <scope>provided</scope>
         </dependency>
 
-        <dependency>
-            <groupId>com.java110</groupId>
-            <artifactId>java110-event</artifactId>
-        </dependency>
+
 
 
 

+ 1 - 1
Api/src/main/java/com/java110/api/listener/AbstractServiceApiPlusListener.java

@@ -123,7 +123,7 @@ public abstract class AbstractServiceApiPlusListener extends AbstractServiceApiD
                 //已经存在这个 节点
                 if (data.containsKey(businessName)) {
                     JSONArray tmpDataBusinesses = data.getJSONArray(businessName);
-                    tmpDataBusinesses.add(tmpData.getJSONArray(businessName));
+                    tmpDataBusinesses.addAll(tmpData.getJSONArray(businessName));
                 } else {
                     data.put(businessName, tmpData.getJSONArray(businessName));
                 }

+ 1 - 4
CommentService/pom.xml

@@ -24,10 +24,7 @@
             <groupId>com.java110</groupId>
             <artifactId>java110-service</artifactId>
         </dependency>
-        <dependency>
-            <groupId>com.java110</groupId>
-            <artifactId>java110-event</artifactId>
-        </dependency>
+
     </dependencies>
 
     <build>

+ 0 - 5
CommonService/pom.xml

@@ -26,11 +26,6 @@
             <groupId>com.java110</groupId>
             <artifactId>java110-service</artifactId>
         </dependency>
-
-        <dependency>
-            <groupId>com.java110</groupId>
-            <artifactId>java110-event</artifactId>
-        </dependency>
         <dependency>
             <groupId>org.activiti</groupId>
             <artifactId>activiti-spring</artifactId>

+ 1 - 4
CommunityService/pom.xml

@@ -28,10 +28,7 @@
             <artifactId>java110-service</artifactId>
         </dependency>
 
-        <dependency>
-            <groupId>com.java110</groupId>
-            <artifactId>java110-event</artifactId>
-        </dependency>
+
 
 
     </dependencies>

+ 1 - 1
CommunityService/src/main/java/com/java110/community/listener/communityMember/MemberJoinedCommunityListener.java

@@ -57,7 +57,7 @@ public class MemberJoinedCommunityListener extends AbstractCommunityBusinessServ
      * @param business        当前业务对象
      */
     @Override
-    protected void doSaveBusiness(DataFlowContext dataFlowContext, Business business) {
+    public void doSaveBusiness(DataFlowContext dataFlowContext, Business business) {
         JSONObject data = business.getDatas();
         Assert.notEmpty(data, "没有datas 节点,或没有子节点需要处理");
 

+ 1 - 4
FeeService/pom.xml

@@ -28,10 +28,7 @@
             <artifactId>java110-service</artifactId>
         </dependency>
 
-        <dependency>
-            <groupId>com.java110</groupId>
-            <artifactId>java110-event</artifactId>
-        </dependency>
+
     </dependencies>
 
     <build>

+ 1 - 4
JobService/pom.xml

@@ -27,10 +27,7 @@
             <groupId>com.java110</groupId>
             <artifactId>java110-service</artifactId>
         </dependency>
-        <dependency>
-            <groupId>com.java110</groupId>
-            <artifactId>java110-event</artifactId>
-        </dependency>
+
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>

+ 1 - 9
OrderService/pom.xml

@@ -27,10 +27,7 @@
             <artifactId>java110-service</artifactId>
         </dependency>
 
-        <dependency>
-            <groupId>com.java110</groupId>
-            <artifactId>java110-event</artifactId>
-        </dependency>
+
 
         <dependency>
             <groupId>com.java110</groupId>
@@ -38,11 +35,6 @@
             <scope>provided</scope>
         </dependency>
 
-        <dependency>
-            <groupId>com.java110</groupId>
-            <artifactId>java110-logAgent</artifactId>
-        </dependency>
-
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>

+ 0 - 4
ReportService/pom.xml

@@ -27,10 +27,6 @@
       <artifactId>java110-service</artifactId>
     </dependency>
 
-    <dependency>
-      <groupId>com.java110</groupId>
-      <artifactId>java110-event</artifactId>
-    </dependency>
 
   </dependencies>
 

+ 1 - 4
StoreService/pom.xml

@@ -23,10 +23,7 @@
             <groupId>com.java110</groupId>
             <artifactId>java110-service</artifactId>
         </dependency>
-        <dependency>
-            <groupId>com.java110</groupId>
-            <artifactId>java110-event</artifactId>
-        </dependency>
+
 
         <!--<dependency>
             <groupId>org.flowable</groupId>

+ 1 - 4
UserService/pom.xml

@@ -25,10 +25,7 @@
             <groupId>com.java110</groupId>
             <artifactId>java110-service</artifactId>
         </dependency>
-        <dependency>
-            <groupId>com.java110</groupId>
-            <artifactId>java110-event</artifactId>
-        </dependency>
+
 
     </dependencies>
 

+ 4 - 4
java110-core/pom.xml

@@ -29,10 +29,6 @@
             <scope>provided</scope>
         </dependency>
 
-        <dependency>
-            <groupId>com.java110</groupId>
-            <artifactId>java110-cacheAgent</artifactId>
-        </dependency>
 
         <dependency>
             <groupId>com.aliyun</groupId>
@@ -75,6 +71,10 @@
             <artifactId>hystrix-core</artifactId>
             <scope>provided</scope>
         </dependency>
+        <dependency>
+            <groupId>com.java110</groupId>
+            <artifactId>java110-utils</artifactId>
+        </dependency>
 
     </dependencies>
 </project>

+ 1 - 15
pom.xml

@@ -139,11 +139,6 @@
                 <version>${microcommunity.version}</version>
             </dependency>
 
-            <dependency>
-                <groupId>com.java110</groupId>
-                <artifactId>java110-event</artifactId>
-                <version>${microcommunity.version}</version>
-            </dependency>
 
             <dependency>
                 <groupId>com.java110</groupId>
@@ -162,16 +157,7 @@
                 <version>${microcommunity.version}</version>
             </dependency>
 
-            <dependency>
-                <groupId>com.java110</groupId>
-                <artifactId>java110-cacheAgent</artifactId>
-                <version>${microcommunity.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>com.java110</groupId>
-                <artifactId>java110-logAgent</artifactId>
-                <version>${microcommunity.version}</version>
-            </dependency>
+
             <dependency>
                 <groupId>com.java110</groupId>
                 <artifactId>java110-db</artifactId>