Kyle Boon
Lead engineer
Kyle Boon
Dropwizard has out-of-the-box support for sophisticated configuration, application metrics, logging, operational tools, and much more, allowing you and your team to ship a production-quality HTTP+JSON web service in the shortest time possible.
As I've said before, the only reason Dropwizard exists at all is to provide
opinions on what a service should be.
It uses fat JARs because I think they work better.
It embeds Jetty because I think that works better.
It uses Jackson because I think that works better.
It uses Jersey because I think that works better.
It has a single YAML configuration file because I think that works better.
It wraps Logback because I think that works better.
public static void main(String[] args) throws Exception {
new ContactsService().run(args)
}
By Kyle Boon