maven 插件下载失败

  1. 去阿里云搜索是否存在相关插件 https://developer.aliyun.com/mvn/search
  2. 在dependencies标签里边添加标签依赖类似

    1. <dependency>
    2. <groupId>com.spotify</groupId>
    3. <artifactId>docker-maven-plugin</artifactId>
    4. <version>1.2.1</version>
    5. <type>maven-plugin</type>
    6. </dependency>
  3. 刷新依赖即可

maven 父子依赖报错

如果maven项目有父子项目结构,但是子项目想独立继承springboot工程,可以在子项目中使用这个标签<relativePath />

  1. <parent>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-parent</artifactId>
  4. <version>2.6.4</version>
  5. <relativePath />
  6. </parent>

springbootTest 报错【SpringBoot】报错:java.lang.NoClassDefFoundError: org/springframework/boot/ApplicationContextFactory

降级pom里边的springboot版本,junit版本和springboottest的版本不一致导致的。