An open API service indexing awesome lists of open source software.

https://github.com/bethibande/jwebapi

A simple framework for easy creation of simple http servers/clients
https://github.com/bethibande/jwebapi

framework gson http java maven web

Last synced: 2 days ago
JSON representation

A simple framework for easy creation of simple http servers/clients

Awesome Lists containing this project

README

          

# JWebAPI 2.2-PRE
A simple framework for easy creation of simple http servers/clients



### Please note that the current v2 version is not yet stable, code of the 1.1.1 version can be found [here](https://github.com/Bethibande/JWebAPI/tree/v1.1.1)

## Overview
- [Requirements](#requirements)
- [Download](#download)
- [Dependencies](#dependencies)
- [Example](#example)

## Requirements
### version 2 and later
- java 17
- [Dependencies](#dependencies)
### version 1.1.1 and below
- java 11
- [Google Gson](https://mvnrepository.com/artifact/com.google.code.gson/gson)

## Download
Download latest build [here](https://github.com/Bethibande/maven-repos/blob/main/JWebAPI.jar)
### Gradle
```gradle
repositories {
mavenCentral()

maven { url "https://github.com/Bethibande/maven-repos/raw/main" }
}

dependencies {
implementation 'de.bethibande:jwebapi:2.2-PRE'
}
```
### Maven
```xml

de.bethibande
https://github.com/Bethibande/maven-repos/raw/main

de.bethibande
jwebapi
2.2-PRE

```

## Dependencies
- [Google Gson](https://mvnrepository.com/artifact/com.google.code.gson/gson)
- [Jetbrains Annotations](https://mvnrepository.com/artifact/org.jetbrains/annotations)

## Example
Full example [here](https://github.com/Bethibande/JWebAPI/tree/master/examples/src/com/bethibande/web/examples)