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
- Host: GitHub
- URL: https://github.com/bethibande/jwebapi
- Owner: Bethibande
- License: apache-2.0
- Created: 2022-03-28T19:31:15.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-08T15:25:11.000Z (about 3 years ago)
- Last Synced: 2023-04-03T10:32:40.864Z (about 3 years ago)
- Topics: framework, gson, http, java, maven, web
- Language: Java
- Homepage:
- Size: 407 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)