Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Grpc Spring Boot Starter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Jira
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
guange
Grpc Spring Boot Starter
Commits
32d0a6cd
Commit
32d0a6cd
authored
5 years ago
by
Michael
Browse files
Options
Downloads
Patches
Plain Diff
Release 2.7.0
parent
f48940a3
Branches
Branches containing commit
Tags
v2.7.0.RELEASE
Tags containing commit
No related merge requests found
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
README-zh-CN.md
+7
-7
7 additions, 7 deletions
README-zh-CN.md
README.md
+7
-7
7 additions, 7 deletions
README.md
build.gradle
+1
-1
1 addition, 1 deletion
build.gradle
docs/en/versions.md
+1
-1
1 addition, 1 deletion
docs/en/versions.md
docs/zh-CN/versions.md
+13
-13
13 additions, 13 deletions
docs/zh-CN/versions.md
with
29 additions
and
29 deletions
README-zh-CN.md
+
7
−
7
View file @
32d0a6cd
...
...
@@ -37,7 +37,7 @@ QQ交流群:294712648
2.
x.x.RELEASE 支持 Spring Boot 2.1.x/2.2.x 和 Spring Cloud Greenwich / Hoxton。
最新版本:
`2.
6.2
.RELEASE`
最新版本:
`2.
7.0
.RELEASE`
(
`2.4.0.RELEASE`
用于 Spring Boot 2.0.x & Spring Cloud Finchy).
...
...
@@ -57,7 +57,7 @@ QQ交流群:294712648
<dependency>
<groupId>
net.devh
</groupId>
<artifactId>
grpc-spring-boot-starter
</artifactId>
<version>
2.
6.2
.RELEASE
</version>
<version>
2.
7.0
.RELEASE
</version>
</dependency>
````
...
...
@@ -65,7 +65,7 @@ Gradle:
````
gradle
dependencies
{
compile
'net.devh:grpc-spring-boot-starter:2.
6.2
.RELEASE'
compile
'net.devh:grpc-spring-boot-starter:2.
7.0
.RELEASE'
}
````
...
...
@@ -77,7 +77,7 @@ dependencies {
<dependency>
<groupId>
net.devh
</groupId>
<artifactId>
grpc-server-spring-boot-starter
</artifactId>
<version>
2.
6.2
.RELEASE
</version>
<version>
2.
7.0
.RELEASE
</version>
</dependency>
````
...
...
@@ -85,7 +85,7 @@ Gradle:
````
gradle
dependencies
{
compile
'net.devh:grpc-server-spring-boot-starter:2.
6.2
.RELEASE'
compile
'net.devh:grpc-server-spring-boot-starter:2.
7.0
.RELEASE'
}
````
...
...
@@ -117,7 +117,7 @@ public class GrpcServerService extends GreeterGrpc.GreeterImplBase {
<dependency>
<groupId>
net.devh
</groupId>
<artifactId>
grpc-client-spring-boot-starter
</artifactId>
<version>
2.
6.2
.RELEASE
</version>
<version>
2.
7.0
.RELEASE
</version>
</dependency>
````
...
...
@@ -125,7 +125,7 @@ Gradle:
````
gradle
dependencies
{
compile
'net.devh:grpc-client-spring-boot-starter:2.
6.2
.RELEASE'
compile
'net.devh:grpc-client-spring-boot-starter:2.
7.0
.RELEASE'
}
````
在 grpc 客户端的的 stub 字段上添加
`@GrpcClient(serverName)`
注解。
...
...
This diff is collapsed.
Click to expand it.
README.md
+
7
−
7
View file @
32d0a6cd
...
...
@@ -36,7 +36,7 @@ application
2.
x.x.RELEASE supports Spring Boot 2.1.x/2.2.x & Spring Cloud Greenwich/Hoxton.
The latest version:
``2.
6.2
.RELEASE``
The latest version:
``2.
7.0
.RELEASE``
(Use
`2.4.0.RELEASE`
for Spring Boot 2.0.x & Spring Cloud Finchley).
...
...
@@ -56,7 +56,7 @@ To add a dependency using Maven, use the following:
<dependency>
<groupId>
net.devh
</groupId>
<artifactId>
grpc-spring-boot-starter
</artifactId>
<version>
2.
6.2
.RELEASE
</version>
<version>
2.
7.0
.RELEASE
</version>
</dependency>
````
...
...
@@ -64,7 +64,7 @@ To add a dependency using Gradle:
````
gradle
dependencies
{
compile
'net.devh:grpc-spring-boot-starter:2.
6.2
.RELEASE'
compile
'net.devh:grpc-spring-boot-starter:2.
7.0
.RELEASE'
}
````
...
...
@@ -76,7 +76,7 @@ To add a dependency using Maven, use the following:
<dependency>
<groupId>
net.devh
</groupId>
<artifactId>
grpc-server-spring-boot-starter
</artifactId>
<version>
2.
6.2
.RELEASE
</version>
<version>
2.
7.0
.RELEASE
</version>
</dependency>
````
...
...
@@ -84,7 +84,7 @@ To add a dependency using Gradle:
````
gradle
dependencies
{
compile
'net.devh:grpc-server-spring-boot-starter:2.
6.2
.RELEASE'
compile
'net.devh:grpc-server-spring-boot-starter:2.
7.0
.RELEASE'
}
````
...
...
@@ -118,7 +118,7 @@ To add a dependency using Maven, use the following:
<dependency>
<groupId>
net.devh
</groupId>
<artifactId>
grpc-client-spring-boot-starter
</artifactId>
<version>
2.
6.2
.RELEASE
</version>
<version>
2.
7.0
.RELEASE
</version>
</dependency>
````
...
...
@@ -126,7 +126,7 @@ To add a dependency using Gradle:
````
gradle
dependencies
{
compile
'net.devh:grpc-client-spring-boot-starter:2.
6.2
.RELEASE'
compile
'net.devh:grpc-client-spring-boot-starter:2.
7.0
.RELEASE'
}
````
Annotate a field of your grpc client stub with
`@GrpcClient(serverName)`
...
...
This diff is collapsed.
Click to expand it.
build.gradle
+
1
−
1
View file @
32d0a6cd
...
...
@@ -9,7 +9,7 @@ buildscript {
}
}
ext
{
projectVersion
=
'2.7.0
-SNAPSHOT
'
projectVersion
=
'2.7.0
.RELEASE
'
grpcVersion
=
'1.27.1'
protobufVersion
=
'3.11.4'
...
...
This diff is collapsed.
Click to expand it.
docs/en/versions.md
+
1
−
1
View file @
32d0a6cd
...
...
@@ -47,7 +47,7 @@ Current version.
| Version | spring-boot | gRPC | Date |
|:-------:|:-----------:|:----:| ---: |
| 2.7.0
*
| 2.2.4 | 1.27.1 |
TBA
|
| 2.7.0 | 2.2.4 | 1.27.1 |
Feb, 2020
|
| 2.6.2 | 2.2.1 | 1.25.0 | Jan, 2020 |
| 2.6.1 | 2.2.1 | 1.25.0 | NOV, 2019 |
| 2.6.0 | 2.2.1 | 1.24.2 | NOV, 2019 |
...
...
This diff is collapsed.
Click to expand it.
docs/zh-CN/versions.md
+
13
−
13
View file @
32d0a6cd
...
...
@@ -38,21 +38,21 @@
| 版本 | spring-boot | gRPC | 日期 |
|:-------:|:-----------:|:------:| --------:|
| 2.7.0 | 2.2.4 | 1.27.1 |
待定
|
| 2.6.2 | 2.2.1 | 1.25.0 | 2020年1月 |
| 2.7.0 | 2.2.4 | 1.27.1 |
2020年02月
|
| 2.6.2 | 2.2.1 | 1.25.0 | 2020年
0
1月 |
| 2.6.1 | 2.2.1 | 1.25.0 | 2019年11月 |
| 2.6.0 | 2.2.1 | 1.24.2 | 2019年11月 |
| 2.5.1 | 2.1.6 | 1.22.2 | 2019年8月 |
| 2.5.0 | 2.1.6 | 1.22.1 | 2019年8月 |
| 2.4.0 | 2.1.5 | 1.20.0 | 2019年6月 |
| 2.3.0 | 2.1.4 | 1.18.0 | 2019年4月 |
| 2.2.1 | 2.0.7 | 1.17.1 | 2019年1月 |
| 2.5.1 | 2.1.6 | 1.22.2 | 2019年
0
8月 |
| 2.5.0 | 2.1.6 | 1.22.1 | 2019年
0
8月 |
| 2.4.0 | 2.1.5 | 1.20.0 | 2019年
0
6月 |
| 2.3.0 | 2.1.4 | 1.18.0 | 2019年
0
4月 |
| 2.2.1 | 2.0.7 | 1.17.1 | 2019年
0
1月 |
| 2.2.0 | 2.0.6 | 1.17.1 | 2018年12月 |
| 2.1.0 | 2.0.? | 1.14.0 | 2018年10月 |
| 2.0.1 | 2.0.? | 1.14.0 | 2018年8月 |
| 2.0.0 | 2.0.? | 1.13.1 | 2018年8月 |
| 2.0.1 | 2.0.? | 1.14.0 | 2018年
0
8月 |
| 2.0.0 | 2.0.? | 1.13.1 | 2018年
0
8月 |
(
*
未来版本)
(
*
代表
未来
的
版本)
### 1.x 版本
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment