Skip to content

Greeneyes-cyber/rest-api-framework

 
 

Repository files navigation

Build Status

rest-api-framework

Overview

Perhaps, on building REST API with Java or Kotlin, we always do the same things like
checking JSON inputs and building a response object.
This framework offer convenient methods for those situations.

Preface

This framework works well with an architecture of DDD.
You can handle the problem well on using DDD layers(controllers, services, and so on).

Feature

We can feature mainly 3 functions:

  • Input checking
  • Logging with Logback, slf4j
  • Response Builder
  • a Web API client

Installing

Add the dependencies.

Gradle

Add the dependency.
build.gradle.kts...

compile group: 'net.framework.api.rest', name: 'rest-api-framework', version: '1.0.0'

build.gradle.kts...

implementation("net.framework.api.rest:rest-api-framework:1.0.0")

Maven

Add the dependency on pom.xml.

<dependency>
  <groupId>net.framework.api.rest</groupId>
  <artifactId>rest-api-framework</artifactId>
  <version>1.0.0</version>
</dependency>

See more: https://github.com/simonNozaki/rest-api-framework/packages

How it works

*underconstructions...

Releases

No releases published

Packages

No packages published

Languages

  • Java 61.8%
  • Kotlin 38.2%