grpc-ecosystem / grpc-spring

Spring Boot starter module for gRPC framework.
https://grpc-ecosystem.github.io/grpc-spring/
Apache License 2.0
3.46k stars 811 forks source link

springboot 2.7.13 怎么支持? #969

Closed renguoqing123 closed 10 months ago

renguoqing123 commented 11 months ago

我的版本2.7.13</spring-boot.version>能支持吗 我看grpc-spring-boot-starter最低支持版本到2.6.13

renguoqing123 commented 11 months ago

排除就可以了 <-_-!>

<dependency>
            <groupId>net.devh</groupId>
            <artifactId>grpc-server-spring-boot-starter</artifactId>
            <version>2.14.0.RELEASE</version>
            <exclusions>
                <exclusion>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter</artifactId>
                </exclusion>
            </exclusions>
</dependency>