#24022 - added protobuf MessageConverter
This commit is contained in:
committed by
Rossen Stoyanchev
parent
d9ebc3bbc4
commit
e858b21c60
12
spring-messaging/src/test/proto/sample.proto
Normal file
12
spring-messaging/src/test/proto/sample.proto
Normal file
@@ -0,0 +1,12 @@
|
||||
option java_package = "org.springframework.protobuf.messaging";
|
||||
option java_outer_classname = "OuterSample";
|
||||
option java_multiple_files = true;
|
||||
|
||||
message Msg {
|
||||
optional string foo = 1;
|
||||
optional SecondMsg blah = 2;
|
||||
}
|
||||
|
||||
message SecondMsg {
|
||||
optional int32 blah = 1;
|
||||
}
|
||||
Reference in New Issue
Block a user