带有Jersey的Spring Boot 2.1.0

时间:2018-10-31 20:15:48

标签: spring-boot jersey

今天,我启动了一个简单的应用程序spring boot应用程序。因为我从头开始,所以我使用的是最新版本的SpringBoot:2.1.0.RELEASE

我想使用Jersey来使用JAX-RS。我的版本适用于1.3.6 Spring Boot版本,但出现以下错误:

***************************
APPLICATION FAILED TO START
***************************

Description:

The bean 'requestContextFilter', defined in class path resource [org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class], could not be registered. A bean with that name has already been defined in class path resource [org/springframework/boot/autoconfigure/jersey/JerseyAutoConfiguration.class] and overriding is disabled.

Action:

Consider renaming one of the beans or enabling overriding by setting spring.main.allow-bean-definition-overriding=true

我无法理解问题可能出在哪里,因为此时我的应用程序极简。

显然,bean'requestContextFilter'被配置了两次,但我不知道它的配置位置。

这是我的配置:

pom.xml

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.1.0.RELEASE</version>
</parent>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <start-class>pt.msoftware.userauthservice.App</start-class>
    <java.version>1.8</java.version>
    <docker.image.prefix>${user.name}</docker.image.prefix>
</properties>

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

    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-actuator</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-jersey</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-devtools</artifactId>
        <optional>true</optional>
    </dependency>
</dependencies>

SpringBoot应用程序类

@SpringBootApplication
public class App {
    public static void main(String[] args) {
        SpringApplication.run(App.class, args);
    }
}

**球衣配置**

import org.glassfish.jersey.server.ResourceConfig;
import org.springframework.stereotype.Component;
import pt.msoftware.userauthservice.rest.UserEndpoint;

import javax.ws.rs.ApplicationPath;

/**
 * Created by marco on 31/10/2018.
 */
@Component
@ApplicationPath("/rest")
public class JerseyConfig extends ResourceConfig {

    public JerseyConfig() {
        register(UserEndpoint.class);
    }

}

**端点**

import org.springframework.stereotype.Component;

import javax.ws.rs.GET;
import javax.ws.rs.Path;

/**
 * Created by marco on 31/10/2018.
 */
@Component
@Path("/user")
public class UserEndpoint {
    @GET
    public String message() {
        return "Hello";
    }
}

有人可以发现我所缺少的或我的代码/配置有什么问题吗?

非常感谢您

1 个答案:

答案 0 :(得分:11)

这是Spring Boot中的错误。感谢您提请我们注意。我已经打开this issue来跟踪问题。

如果仅打算使用Jersey和JAX-RS,则不需要使用spring-boot-starter-web。本质上,它是基于Spring MVC的spring-boot-starter-jersey的等效项。因此,您可以通过从应用程序中删除spring-boot-starter-web依赖项来避免遇到的问题。

如果您想同时使用Spring MVC和JAX-RS,则可以通过将spring.main.allow-bean-definition-overriding=true添加到application.properties中的src/main/resources文件中来启用bean定义覆盖。