forked from dropwizard/dropwizard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
Dropwizard | ||
========== | ||
|
||
*Dropwizard is a sneaky way of making fast Scala web services.* | ||
*Dropwizard is a sneaky way of making fast Java or Scala web services.* | ||
|
||
It's a little bit of opinionated glue code which bangs together a set of libraries which have historically not sucked: | ||
It's a little bit of opinionated glue code which bangs together a set of libraries which have | ||
historically not sucked: | ||
|
||
* [Jetty](http://www.eclipse.org/jetty/) for HTTP servin'. | ||
* [Jersey](http://jersey.java.net/) for REST modelin'. | ||
* [Fig](https://github.com/codahale/fig) for JSON configurin'. | ||
* [Jerkson](https://github.com/codahale/jerkson)/[Jackson](http://jackson.codehaus.org) for JSON parsin' and generatin'. | ||
* [Logula](https://github.com/codahale/logula)/[Log4j](http://logging.apache.org/log4j/1.2/) for loggin'. | ||
* [Metrics](https://github.com/codahale/metrics) for figurin' out what your service is doing in production. | ||
* [Jerkson](https://github.com/codahale/jerkson)/[Jackson](http://jackson.codehaus.org) for JSON | ||
parsin' and generatin'. | ||
* [Logula](https://github.com/codahale/logula)/[Log4j](http://logging.apache.org/log4j/1.2/) for | ||
loggin'. | ||
* [Metrics](https://github.com/codahale/metrics) for figurin' out what your service is doing in | ||
production. | ||
|
||
[Yammer](https://www.yammer.com)'s high-performance, low-latency, Scala services all use Dropwizard. In fact, Dropwizard | ||
is really just a simple extraction of [Yammer](https://www.yammer.com)'s glue code. | ||
|
||
For more information, check out the [wiki](https://github.com/codahale/dropwizard/wiki) and the [example application](https://github.com/codahale/dropwizard-example/). | ||
[Yammer](https://www.yammer.com)'s high-performance, low-latency, Java and Scala services all use | ||
Dropwizard. In fact, Dropwizard is really just a simple extraction of | ||
[Yammer](https://www.yammer.com)'s glue code. |