printfcoder / stack-rpc-tutorials

Stack-RPC 中文示例、教程、资料,源码解读
https://stacklabs.cn
Apache License 2.0
1.69k stars 302 forks source link

更新描述 #170

Closed hengbenyinhe closed 5 years ago

hengbenyinhe commented 5 years ago

更新microservice-in-micro中关于micro new 的内容

printfcoder commented 5 years ago

但是有个地方我没有看到,micro new生成的proto文件里的import user实体的目录要手动改,提交里没有看到,是生成的内容有变化?

hengbenyinhe commented 5 years ago

但是有个地方我没有看到,micro new生成的proto文件里的import user实体的目录要手动改,提交里没有看到,是生成的内容有变化?

proto文件里面的import user实体这个我有点不理解,我执行micro new --namespace=mu.micro.book --type=srv --alias=user github.com/micro-in-cn/tutorials/microservice-in-micro/part1/user-srv生成的目录是这样的 . ├── main.go ├── plugin.go ├── handler │ └── user.go ├── subscriber │ └── user.go ├── proto/user │ └── user.proto ├── Dockerfile ├── Makefile ├── README.md └── go.mod

printfcoder commented 5 years ago
├── subscriber
│ └── user.go
├── proto/user
│ └── user.proto

user.proto 文件中的import user.go的地方需要改的,我记得是这样子

hengbenyinhe commented 5 years ago

我这边生成的user.proto的文件没有 import user.go,是我的micro版本需要升级吗?我的版本是micro version 1.7.0

printfcoder commented 5 years ago

1.13.0

hengbenyinhe commented 5 years ago

1.13.0

OK,我下班更改一下