Skip to content

Commit 0b120dd

Browse files
committed
fix 代码注释
1 parent 113a421 commit 0b120dd

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

examples/cloud-grpc-client-consul/src/main/java/net/devh/boot/grpc/examples/cloud/client/ConsulClientApplication.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@
2121
import org.springframework.boot.autoconfigure.SpringBootApplication;
2222
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
2323

24+
/**
25+
* @author zhaochunlin ([email protected])
26+
* @since 2021/1/9
27+
*/
2428
@EnableDiscoveryClient
2529
@SpringBootApplication
2630
public class ConsulClientApplication {

examples/cloud-grpc-client-consul/src/main/java/net/devh/boot/grpc/examples/cloud/client/GrpcClientController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
import org.springframework.web.bind.annotation.RestController;
2424

2525
/**
26-
* @author Michael (yidongnan@gmail.com)
27-
* @since 2016/12/4
26+
* @author zhaochunlin (946599275@qq.com)
27+
* @since 2021/1/9
2828
*/
2929
@RestController
3030
public class GrpcClientController {

examples/cloud-grpc-client-consul/src/main/java/net/devh/boot/grpc/examples/cloud/client/GrpcClientService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
import org.springframework.stereotype.Service;
2727

2828
/**
29-
* @author Michael (yidongnan@gmail.com)
30-
* @since 2016/11/8
29+
* @author zhaochunlin (946599275@qq.com)
30+
* @since 2021/1/9
3131
*/
3232
@Service
3333
@Slf4j

examples/cloud-grpc-server-consul/src/main/java/net/devh/boot/grpc/examples/cloud/server/ConsulServerApplication.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@
2121
import org.springframework.boot.autoconfigure.SpringBootApplication;
2222
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
2323

24+
/**
25+
* @author zhaochunlin ([email protected])
26+
* @since 2021/1/9
27+
*/
2428
@EnableDiscoveryClient
2529
@SpringBootApplication
2630
public class ConsulServerApplication {

examples/cloud-grpc-server-consul/src/main/java/net/devh/boot/grpc/examples/cloud/server/GrpcServerService.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,9 @@
2424
import net.devh.boot.grpc.server.service.GrpcService;
2525

2626
/**
27-
* @author Michael (yidongnan@gmail.com)
28-
* @since 2016/11/8
27+
* @author zhaochunlin (946599275@qq.com)
28+
* @since 2021/1/9
2929
*/
30-
3130
@GrpcService
3231
public class GrpcServerService extends SimpleGrpc.SimpleImplBase {
3332

0 commit comments

Comments
 (0)