You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@dubbo.apache.org by "DreamerPXY (via GitHub)" <gi...@apache.org> on 2023/05/29 02:05:34 UTC

[GitHub] [dubbo] DreamerPXY commented on issue #12381: dubbo tri Dubbo3TripleGenerator 3.2.1 多service 生成报错

DreamerPXY commented on issue #12381:
URL: https://github.com/apache/dubbo/issues/12381#issuecomment-1566389236

   使用
   
   ![image](https://github.com/apache/dubbo/assets/30964063/98997db7-5435-4946-aaaa-79379c6cf41d)
   
   
   和proto文件
   
    syntax = "proto3";
   
   option java_multiple_files = true;
   option java_package = "com.example.dubbomutiservice.proto";
   option java_outer_classname = "UserServiceProto";
   option objc_class_prefix = "DEMOSRV";
   
   package userservice;
   
   // The demo service definition.
   service UserService {
     rpc SayHello (HelloRequest) returns (HelloReply) {}
   }
   
   service UserServiceGtw {
     rpc SayHello (HelloRequest) returns (HelloReply) {}
   }
   
   // The request message containing the user's name.
   message HelloRequest {
     string name = 1;
   }
   
   // The response message containing the greetings
   message HelloReply {
     string message = 1;
   }
   没有复现编译error,请贴一下使用的plugin和Proto文件 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org