我知道,当我从spring-boot-starter-parent
继承时,我将拥有以下继承链:
my-project=>spring-boot-starter-parent=>spring-boot-dependencies=>spring-boot-build=>maven parent pom
=>(表示继承)
我的项目的POM:
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.0.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>demo</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
它没有显示IDE中的父POM关系,因为在部署到中央Maven存储库的spring-boot-dependencies的POM文件中,没有父标记:https://search.Maven.org/artifact/org.springframework.boot/spring-boot-dependencies/2.2.0.
因此,在将pom部署到Maven Central时,从Spring Boot开始的构建过程似乎删除了父标记。
其原因可能是(命名表明了这一点),spring-boot-build只为Spring Boot本身提供了与构建过程相关的配置和依赖关系,但对于使用它的应用程序来说并不是必需的或需要的。
spring-boot指南https://spring.io/guides/gs/messaging-jms/使用spring-boot-starter-activemq,然后引用spring-jms。如果我想使用一个不同的消息代理,而spring没有为那个特定的消息代理提供一个starter jar,我该如何在依赖项中包含spring-jms呢?我可以只包含spring-jms,还是有更好的方法
我使用的是eclipse 2018、gradle 5.2.1、buildship 3.0.1。 我的配置看起来像: 我尝试根据building-spring-boot-2-projects-with-gradle创建spring boot 2 是: 但是,在我保存构建之后。gradle,项目和外部依赖关系消失,Spring Bootjar也没有下载。 我错了什么? 如果我使用gradle by s
我最终得到一个编译错误:
我有一个使用Spring Boot starter父代2.5.4的Spring Boot应用程序: 我可以看到在MavenSpring启动启动父2.5.4 它带来了一些我可以使用的依赖性。因此,我想清理手动添加到POM中的依赖项。 我删除了一些手动添加的依赖项,如assertJ...并且它可以工作,但是当我删除Lombok或Awaality时,例如,失败。为什么会发生这种情况?如果我再次添加依赖项
我想有一个使用Spring Boot的微服务项目,它通过通过Spring Data JPA项目创建的依赖项访问实体和DAO。这个想法是多个微服务可以获得该依赖项。 然而,当jar在Spring Boot Data JPA项目中组装时,它通过starter依赖项包含了许多依赖项。其中大多数也出现在使用它的Spring Boot Microservice项目中。 您将如何通过Spring Data J