Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/spring-boot/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Spring boot 为什么我需要org.reactivestreams:reactivestreams,如果我';我不是在做一个被动的web应用程序吗?_Spring Boot_Wildfly_Wildfly 18 - Fatal编程技术网

Spring boot 为什么我需要org.reactivestreams:reactivestreams,如果我';我不是在做一个被动的web应用程序吗?

Spring boot 为什么我需要org.reactivestreams:reactivestreams,如果我';我不是在做一个被动的web应用程序吗?,spring-boot,wildfly,wildfly-18,Spring Boot,Wildfly,Wildfly 18,我想在Wildfly 18应用服务器上部署spring boot 2.2.2.RELEASE应用程序 pom.xml: <dependencies> <dependency> <groupId>io.ropi.psf</groupId> <artifactId>psf-api</artifactId> </dependency>

我想在Wildfly 18应用服务器上部署spring boot 2.2.2.RELEASE应用程序

pom.xml:

<dependencies>
        <dependency>
            <groupId>io.ropi.psf</groupId>
            <artifactId>psf-api</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter-logging</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.mapstruct</groupId>
            <artifactId>mapstruct-processor</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.logging.log4j</groupId>
            <artifactId>log4j-slf4j18-impl</artifactId>
        </dependency>
    </dependencies>
此问题可通过以下方式解决:

        <dependency>
            <groupId>org.reactivestreams</groupId>
            <artifactId>reactive-streams</artifactId>
        </dependency>

org.reactivestreams
反应流

我真的不想这么做,因为我不是在做一个被动的网络应用程序。这个问题有更好的解决方法吗?还是一个bug?

您是如何解决这个问题的?我也有同样的问题,被迫添加反应流jar,这会导致大量问题
        <dependency>
            <groupId>org.reactivestreams</groupId>
            <artifactId>reactive-streams</artifactId>
        </dependency>