java.lang.IllegalArgumentException: Jetty ALPN/NPN has not been properly configured

后端 未结 5 1956
鱼传尺愫
鱼传尺愫 2021-01-21 05:05

Getting java.lang.IllegalArgumentException: Jetty ALPN/NPN has not been properly configured, while using gRPC(google pub/sub) to publish/consumes messa

5条回答
  •  遥遥无期
    2021-01-21 05:17

    In POM, try to place the gRPC dependency before the spring boot dependency (the order of dependencies matters). I did that and the issue was solved. For example:

    
        com.google.cloud
        google-cloud-language
        0.13.0-beta
    
    
        org.springframework.boot
        spring-boot-starter-web
    
    

提交回复
热议问题