Skip to content

Latest commit

 

History

History
executable file
·
39 lines (29 loc) · 1.38 KB

README.md

File metadata and controls

executable file
·
39 lines (29 loc) · 1.38 KB

Thrift-REST Bridge

Maven Central Codacy Badge

The bridge for accessing thrift services using simple JSON. It allows request thrift services via REST client like Postman / Insomnia / cURL

Usage

Add and configure starter for your project for adding thrift-rest api

Dependency

repositories {
  jcenter()
}

dependencies {
  // ...
  implementation 'org.example:thrift-api:0.2.+' // dependency with thrift services/entity
  implementation 'io.github.artemy.osipov.thrift:rest-bridge-micronaut:0.1.0' // for micronaut project
  implementation 'io.github.artemy.osipov.thrift:rest-bridge-spring-boot-starter:0.1.0' // for spring project
  // ...
}

Configuration properties

# package that will be scanned for thrift services
bridge.thrift.scanPackage: org.example.thrift

Rest API

  • List services: GET /services
  • Show service: GET /services/:serviceId
  • Proxy operation: POST /services/:serviceId/operations/:operationName
  • Get operation template: GET /services/:serviceId/operations/:operationName/template