3

我在用着:

  • Quarkus 1.6.1.Final
  • Vertx 3.9.1(由quarkus-vertx依赖提供,见下面的pom.xml)

而且我无法让clusered Eventbus工作。我已按照此处列出的说明进行操作:

https://vertx.io/docs/vertx-hazelcast/java/

我还在 Quarkus 中启用了集群:

quarkus.vertx.cluster.clustered=true
quarkus.vertx.cluster.port=8081
quarkus.vertx.prefer-native-transport=true
quarkus.http.port=8080

这是我的 pom.xml:

    <dependencies>
    <dependency>
        <groupId>io.quarkus</groupId>
        <artifactId>quarkus-resteasy</artifactId>
    </dependency>
    <dependency>
        <groupId>io.quarkus</groupId>
        <artifactId>quarkus-resteasy-mutiny</artifactId>
    </dependency>
    <dependency>
        <groupId>io.quarkus</groupId>
        <artifactId>quarkus-vertx</artifactId>
    </dependency>
    <dependency>
        <groupId>io.vertx</groupId>
        <artifactId>vertx-hazelcast</artifactId>
        <version>3.9.2</version>
        <exclusions>
            <exclusion>
                <groupId>io.vertx</groupId>
                <artifactId>vertx-core</artifactId>
            </exclusion>
            <!--                <exclusion>-->
            <!--                    <groupId>com.hazelcast</groupId>-->
            <!--                    <artifactId>hazelcast</artifactId>-->
            <!--                </exclusion>-->
        </exclusions>
    </dependency>
  <!--        <dependency>-->
  <!--            <groupId>com.hazelcast</groupId>-->
  <!--            <artifactId>hazelcast-all</artifactId>-->
  <!--            <version>3.9</version>-->
  <!--        </dependency>-->
    <dependency>
        <groupId>io.netty</groupId>
        <artifactId>netty-transport-native-epoll</artifactId>
        <classifier>linux-x86_64</classifier>
    </dependency>      
   </dependencies>

我得到的错误如下:

Caused by: java.lang.ClassNotFoundException: com.hazelcast.core.MembershipListener

正如您在我的 pom.xml 中看到的那样,我还添加了依赖 hazelcast-all:3.9 并从 vertx-hazelcast:3.9.2 中排除了 hazelcast 依赖,然后这个错误消失了,但又出现了另一个错误:

Caused by: com.hazelcast.config.InvalidConfigurationException: cvc-complex-type.2.4.a: Invalid content was found starting with element '{"http://www.hazelcast.com/schema/config":memcache-protocol}'. One of '{"http://www.hazelcast.com/schema/config":public-address, "http://www.hazelcast.com/schema/config":reuse-address, "http://www.hazelcast.com/schema/config":outbound-ports, "http://www.hazelcast.com/schema/config":join, "http://www.hazelcast.com/schema/config":interfaces, "http://www.hazelcast.com/schema/config":ssl, "http://www.hazelcast.com/schema/config":socket-interceptor, "http://www.hazelcast.com/schema/config":symmetric-encryption, "http://www.hazelcast.com/schema/config":member-address-provider}' is expected.

我做错了什么或忘记了什么,或者这只是 Quarkus 或 Vertx 中的一个错误?

提前谢谢任何帮助。

4

2 回答 2

4

我认为您的问题最可能的原因是您使用的quarkus-universe-bom是不兼容的 Hazelcast 版本(我们在那里有一个 Hazelcast 扩展)vertx-hazelcast

检查您的依赖关系树,mvn dependency:tree并确保 Hazelcast 工件是vertx-hazelcast.

另一种选择是简单地使用quarkus-bomwhich 不强制 Hazelcast 版本并让其vertx-hazelcast自行拖动依赖项。

于 2020-07-29T11:03:06.357 回答
1

这似乎是 Quarkus 中的一个错误,此问题与:

https://github.com/quarkusio/quarkus/issues/10889

于 2020-07-29T10:39:57.743 回答