Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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`.