多模块安装时,client找不到common包,怎么解决
来源:5-9 项目改造成多模块
洪小才
2018-06-04
4回答
-
果然爸爸
2018-07-31
以前开发改造很多次都没出问题,不知道为什么product-client总是找不到product-common依赖,明明在仓库里,就是找不到,好心塞!!!!
042018-07-31 -
廖师兄
2018-06-18
同学你好,在这一节里,client包是不会去找common包的
你再去看看打包的错误日志
参考这一节的代码 https://gitlab-demo.com/SpringCloud_Sell/order/tree/5-9
如果涉及到远程调试,可以在群里@小助手哦,遇到问题,我们一定会帮助你解决,让每一位学员学完学会这套课程。
00 -
洪小才
提问者
2018-06-05
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>product</artifactId>
<groupId>com.ithhc</groupId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../product/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>server</artifactId>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
</dependencies>
<build>
<!--<defaultGoal>compile</defaultGoal>-->
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>00 -
wirechen
2018-06-05
同学你好,你可以尝试一下:1、先clean整个项目。2、进入common模块独立install该模块。3、再回到主项目全部一起install。
062018-06-05
SpringCloud Finchley(M2+RELEASE+SR2)微服务实战
5668 学习 · 2489 问题
相似问题