Bladeren bron

业务服务优化

fangpy 4 jaren geleden
bovenliggende
commit
cd5f695702
3 gewijzigde bestanden met toevoegingen van 26 en 2 verwijderingen
  1. 18 0
      business-common/pom.xml
  2. 1 1
      business-server/src/main/java/com/rongwei/BusinessServerApplication.java
  3. 7 1
      pom.xml

+ 18 - 0
business-common/pom.xml

@@ -27,5 +27,23 @@
             <artifactId>mysql-connector-java</artifactId>
             <version>${mysql.version}</version>
         </dependency>
+
+        <dependency>
+            <groupId>com.rongwei</groupId>
+            <artifactId>rw-common-config</artifactId>
+            <version>1.1-SNAPSHOT</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.rongwei</groupId>
+                    <artifactId>rw-common-license</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <dependency>
+            <groupId>com.rongwei</groupId>
+            <artifactId>rw-common-utils</artifactId>
+            <version>1.1-SNAPSHOT</version>
+        </dependency>
     </dependencies>
 </project>

+ 1 - 1
business-server/src/main/java/com/rongwei/BusinessServerApplication.java

@@ -11,7 +11,7 @@ import org.springframework.scheduling.annotation.EnableAsync;
 @SpringBootApplication
 @EnableDiscoveryClient
 @EnableFeignClients
-@MapperScan("com.rongwei.*.*.*.dao")
+@MapperScan("com.rongwei.*.*.dao")
 public class BusinessServerApplication {
 
     public static void main(String[] args) {

+ 7 - 1
pom.xml

@@ -13,10 +13,16 @@
         <module>business-entity</module>
     </modules>
 
-    <parent>
+    <!--<parent>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-parent</artifactId>
         <version>2.1.2.RELEASE</version>
+    </parent>-->
+
+    <parent>
+        <artifactId>InControl</artifactId>
+        <groupId>com.rongwei</groupId>
+        <version>1.1-SNAPSHOT</version>
     </parent>
 
     <properties>