Spring 仅作为客户端使用球衣启动

Spring boot with jersey only as a client

我使用最新的 spring 启动,我想使用球衣作为休息客户端。但是我真的不需要休息服务器!

包括

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-jersey</artifactId>
</dependency>

启动球衣服务器。

如何禁用它? TIA!

我的解决方案是,将以下内容添加到 pom.xml

    <dependency>
        <groupId>org.glassfish.jersey.core</groupId>
        <artifactId>jersey-client</artifactId>
        <version>${jersey.version}</version>    <!-- Spring boot's version -->
    </dependency>

并删除对 spring-boot-starter-jersey 的依赖。