Skip to content
This repository has been archived by the owner on Aug 14, 2020. It is now read-only.

mobimeo/protostuff-runtime-proto

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Note: This is a fork of the project https://github.com/webbynet/protostuff-runtime-proto to continue the development, like adding supporting types.

Protostuff runtime generator for .proto files

Uses protostuff annotations in POJOs to generate proto files. Can be usefull to understand how protostuff actually serializes Java POJOs and to build cross platform applications where source of the protocol are protostuff entities.

Example

For POJO:

class User {
  @Tag(1)
  long id;
  @Tag(2)
  String name;
}

Will be generated a .proto file:

message User {
  optional int64 id = 1;
  optional string name = 2;
}

How to use

  • Build the project by:
mvn clean install
  • Include this dependency to your pom file:
<dependency>
  <groupId>com.moovel.proto</groupId>
  <artifactId>protostuff-runtime-proto</artifactId>
  <version>0.0.1</version>
</dependency>
  • Use generator API to generate .proto files in your project:
String content = Generators.newProtoGenerator(schema).generate();
System.out.println(content);

Requirements

This project is designed to support protostuff version 1.0.9. All generated files are using protostuff-default.proto import, that is located in src/main/resources/

Packages

No packages published

Languages

  • Java 100.0%