相关文章推荐
越狱的牛肉面  ·  sprintf实现原理-掘金·  1 年前    · 
健身的钥匙  ·  JSON & GSON - 读取 JSON ...·  1 年前    · 
健身的弓箭  ·  sql server sum ...·  1 年前    · 

使用protoc编译时出现Import “google/protobuf/any.proto” was not found or had errors.问题的解决方法

在windows环境下使用golang中的protobuf时,在自定义的.proto文件中引入了外部的proto文件

syntax = "proto3";
import "google/protobuf/any.proto";
package proto;

在使用命令

protoc --go_out=plugins=grpc:. ./proto/*.proto

进行编译时,出现错误

proto/common.proto:3:1: Import "google/protobuf/any.proto" was not found or had errors.

一个简单粗暴但方便理解的方法如下:

首先去https://github.com/protocolbuffers/protobuf下载src/google/protobuf,接着将google文件复制后移动至项目下,项目的结构下所示

—Project
	—Proto
		—test.proto
	—google
		—protobuf
			—...

test.proto中引入了外部的proto,接着在在命令行中使得当前位置为 \Project> ,即没有进入任何一个子目录,然后正常使用

protoc --go_out=plugins=grpc:. ./proto/*.proto

就可以正常编译,当然这是非常麻烦的方法

还有一个更灵活的方式是使用proto_path指定要导入的文件的位置,首先先确定GOPATH的位置,我把google/protobuf放在了GOPATH/src目录下,当前的文件结构如下

—GOPATH
		—google
			—protobuf
	—Project
		—Proto
			—test.proto	

因此先保证当前位置为 \Project> ,接着使用如下命令即可正常编译

protoc -I ../src -I ./ --go_out=plugins=grpc:. ./proto/*.proto
#-I就是proto_path的缩写表示

当然如果你的项目路径跟我不一致,也可以使用绝对路径,假如你的google/protobuf的路径格式在windows下为

E:\GoCode\src\google\protobuf

那么你需要将命令改为

protoc -I E:\GoCode\src -I ./ --go_out=plugins=grpc:. ./proto/*.proto
                    使用protoc编译时出现Import “google/protobuf/any.proto” was not found or had errors.问题的解决方法在windows环境下使用golang中的protobuf时,在自定义的.proto文件中引入了外部的proto文件syntax = "proto3";import "google/protobuf/any.proto";package proto;在使用命令protoc --go_out=plugins=grpc:. 
google/protobuf/descriptor.proto: File not found.
kratos/api/annotations.proto:9:1: Import "google/protobuf/descriptor.proto" was not found or had errors.
kratos/api/annotations.proto:11:8: "google.protobuf.EnumOptions" is not defined.
helloworld.
				
1  go grpc-go 相关技术专栏 总入口 2  Protobuf介绍与实战 图文专栏 文章目录 当我们在学习xxx.proto文件,可能会发现依赖下面的文件: 类似的文件,如: any.proto duration.proto source_context.proto type.proto api.proto empty.proto struct.proto wrappers.proto descriptor.proto field_mask.proto timestamp.proto
在Android系统中,.proto文件是protobuf格式的文件,主要用于定义数据结构和网络通信协议。为了在Android平台上编译.proto文件,需要编写.mk文件描述编译过程。 编写.mk文件的具体步骤如下: 1. 定义变量PROTOBUF_DIR,表示protobuf库的路径; 2. 定义变量PROTO_FILES,表示.proto文件的名称,可以使用通配符匹配多个文件,例如"*.proto"; 3. 定义规则%.pb.cc和%.pb.h,分别表示将.proto文件编译成C++代码和头文件,使用protoc命令进行编译,并指定输出路径和生成的文件名; 4. 定义最终目标文件,使用$(PROTO_FILES)变量匹配所有.proto文件,生成对应的.pb.cc和.pb.h文件,最终将它们打包成静态库。 一个示例.mk文件如下: LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) PROTOBUF_DIR := /path/to/protobuf/libraries PROTO_FILES := my_proto.proto $(PROTO_FILES:%.proto=%.pb.cc) $(PROTO_FILES:%.proto=%.pb.h): $(PROTO_FILES) $(PROTOBUF_DIR)/bin/protoc --proto_path=$(LOCAL_PATH) --cpp_out=$(LOCAL_PATH) $^ LOCAL_SRC_FILES := $(PROTO_FILES:%.proto=%.pb.cc) include $(BUILD_STATIC_LIBRARY) 以上规则中,静态库的最终名称为"libmy_proto.a",可以通过修改include $(BUILD_STATIC_LIBRARY)中的LOCAL_MODULE变量进行更改。 总之,在.mk文件中定义好这些参数和规则,就可以通过执行make命令来编译.proto文件并生成静态库了。
解决idea下removeContentEntry: removed content entry url ‘file://*****‘ still exists after removing的问题
解决idea下removeContentEntry: removed content entry url ‘file://*****‘ still exists after removing的问题 golang初学者使用gorm时容易踩得坑(一) Golang下生成protocol buffers代码以及grpc代码的简单教程