Description
Resteasy is a JBoss.org project aimed at providing productivity frameworks for developing client and server RESTful applications and services in Java. It is mainly a JAX-RS implementation but you'll find some other experimental code in the repository.
The project page can be found at http://resteasy.jboss.org
RESTEasy alternatives and similar libraries
Based on the "REST Frameworks" category.
Alternatively, view RESTEasy alternatives based on common mentions on social networks and blogs.
-
Spark
A simple expressive web framework for java. Spark has a kotlin DSL https://github.com/perwendel/spark-kotlin -
rest.li
Rest.li is a REST+JSON framework for building robust, scalable service architectures using dynamic discovery and simple asynchronous APIs. -
RestExpress
Minimalist Java framework for rapidly creating scalable, containerless, RESTful microservices. Ship a production-quality, headless, RESTful API in the shortest time possible. Uses Netty for HTTP, Jackson for JSON, Metrics for metrics, properties files for configuration. Sub-projects and plugins enable, NoSQL, Swagger, Auth0, HAL integration, etc. -
Microserver
Microserver is a Java 8 native, zero configuration, standards based, battle hardened library to run Java Rest Microservices via a standard Java main class. Supporting pure Microservice or Micro-monolith styles. -
Hexagon
Hexagon is a microservices toolkit written in Kotlin. Its purpose is to ease the building of services (Web applications or APIs) that run inside a cloud platform. -
StubbornJava
Unconventional Java code for building web servers / services without a framework. Think dropwizard but as a seed project instead of a framework. If this project had a theme it would be break the rules but be mindful of your decisions. -
Restler
Restler is a library that automatically generates a client for a web service at run time, by analyzing the respective annotated Spring controller interface
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of RESTEasy or a related project?
README
RESTEasy
RESTEasy is a JBoss.org project aimed at providing productivity frameworks for developing client and server RESTful applications and services in Java. It is mainly a Jakarta RESTful Web Services implementation but you'll find some other experimental code in the repository.
The project page can be found at https://resteasy.github.io.
Jakarta RESTful Web Services
RESTEasy is a JBoss project that provides various frameworks to help you build RESTful Web Services and RESTful Java applications. It is a portable implementation of the Jakarta RESTful Web Services specification. The Jakarta RESTful Web Services provides a Java API for RESTful Web Services over the HTTP protocol. Please note that the specification is now under the Eclipse EE4J Project. You can read the entire specification at Jakarta RESTful Web Services.
Getting started with RESTEasy
- Read a book
- Check out the examples in the repository.
- Read the documentation.
- The blog is here.
Documentation
To read the documentation you can read it online.
Issues
Issues are kept in JIRA.
Build
Currently RESTEasy can be built with JDK 11+.
If you want to purely build the project without running the tests, you need to pull down a clone of the RESTEasy repository and run:
$ mvn install -Dmaven.test.skip=true
If you want to build the project with testings run, you may need to specify a profile to use, and may need to configure the Wildfly version you want to run the tests with. Here is an example:
$ export SERVER_VERSION=17.0.0.Final
$ mvn -fae -Dserver.version=$SERVER_VERSION install
Contribute
You are most welcome to contribute to RESTEasy!
Read the [Contribution guidelines](./CONTRIBUTING.md)