Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bowbahdoe/rosie
Transparent Java API for HTTP Requests and Responses
https://github.com/bowbahdoe/rosie
Last synced: 7 days ago
JSON representation
Transparent Java API for HTTP Requests and Responses
- Host: GitHub
- URL: https://github.com/bowbahdoe/rosie
- Owner: bowbahdoe
- License: other
- Created: 2021-06-01T00:46:56.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-09T04:07:51.000Z (about 1 year ago)
- Last Synced: 2023-09-09T05:19:40.330Z (about 1 year ago)
- Language: Java
- Homepage:
- Size: 87.9 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## What is this
In the Clojure ecosystem, every http server works off of a specification called [ring](https://github.com/ring-clojure/ring).
The ring spec says how http requests and responses should be translated into a clojure map, what keys
are required, and what those keys mean.This is similar. There are `Request` and `Response` classes which should be easy to construct from any http
server implementation.You can think of it as an attempt to do something similar to `jakarta.servlet`.