同一个项目里面有GRPC和thirft,导致出错

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

Description:

An attempt was made to call a method that does not exist. The attempt was made from the following location:

    io.grpc.Metadata$Key.validateName(Metadata.java:754)

The following method did not exist:

    com.google.common.base.Preconditions.checkArgument(ZLjava/lang/String;CLjava/lang/Object;)V

The calling method's class, io.grpc.Metadata$Key, was loaded from the following location:

    jar:file:/home/mi/.m2/repository/io/grpc/grpc-api/1.64.0/grpc-api-1.64.0.jar!/io/grpc/Metadata$Key.class

The called method's class, com.google.common.base.Preconditions, is available from the following locations:

    jar:file:/home/mi/.m2/repository/com/google/guava/guava/16.0.1/guava-16.0.1.jar!/com/google/common/base/Preconditions.class

The called method's class hierarchy was loaded from the following locations:
com.google.common.base.Preconditions: file:/home/mi/.m2/repository/com/google/guava/guava/16.0.1/guava-16.0.1.jar


Action:

Correct the classpath of your application so that it contains compatible versions of the classes io.grpc.Metadata$Key and com.google.common.base.Preconditions

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'client': Invocation of init method failed; nested exception is java.lang.NoSuchMethodError: com.google.common.base.Preconditions.checkArgument(ZLjava/lang/String;CLjava/lang/Object;)V
	at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:160)
	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:440)

解决方法:
原因是,grpc和thirft都有相同的依赖,只不过版本不一样

    <dependency>
            <groupId>io.grpc</groupId>
            <artifactId>grpc-netty-shaded</artifactId>
            <version>1.64.0</version>
            <exclusions>
                <exclusion>
                    <groupId>com.google.guava</groupId>
                    <artifactId>guava</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
<dependency>
            <groupId>com.facebook.swift</groupId>
            <artifactId>swift-service</artifactId>
            <version>0.15.0-mdf1.1.4</version>
            <exclusions>
                <exclusion>
                    <groupId>com.google.guava</groupId>
                    <artifactId>guava</artifactId>
                </exclusion>
                    <exclusion>
                        <groupId>org.apache.bval</groupId>
                        <artifactId>bval-jsr303</artifactId>
                    </exclusion>
            </exclusions>
        </dependency>
  • 3
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值