Java REST framework Dropwizard 1.0 released
dropwizard.io
Java REST framework Dropwizard 1.0 released
1–10 of 88 posts
Re: Java REST framework Dropwizard 1.0 released
#2"The highest-volume service in this area is Gurafu, which provides a set of utilities for working with road map data and improves efficiency and accuracy by providing more sophisticated routing options. Gurafu is fronted by µETA, which adds a business logic layer on top of raw ETAs (things like experiment group segmentation). Both Gurafu and µETA are web services built on the DropWizard framework."
Re: Java REST framework Dropwizard 1.0 released
#3It's not the fastest or most scalable option on the JVM (that would probably be something netty based) and the API is an awkward fit for anything streaming or asynchronous, but it's the best thing I've found for its niche.
Re: Java REST framework Dropwizard 1.0 released
#4Re: Java REST framework Dropwizard 1.0 released
#5But RPC-over-HTTP (XML-RPC, JSON-RPC, or even Thrift) is a problem solved long ago, so it's not sexy enough, I think.
Re: Java REST framework Dropwizard 1.0 released
#6Congrats on the 1.0 release!
Re: Java REST framework Dropwizard 1.0 released
#7For traditional web development, I recommend spring-boot which is almost as easy as dropwizard, it also doesn't need an application container and fully supports Spring MVC, Spring Security and all other spring related goodies.
Re: Java REST framework Dropwizard 1.0 released
#8Re: Java REST framework Dropwizard 1.0 released
#9Dropwizard is great for REST APIs (... as the title says). However if you want to use traditional views (MVC, html templates, security, forms etc) then please check something else (I tried it and lost many hours -- in the end I still couldn't do even basic things). For traditional web development, I recommend spring-boot which is almost as easy as dropwizard, it also doesn't need an application container and fully su…
Re: Java REST framework Dropwizard 1.0 released
#10Dropwizard is great for REST APIs (... as the title says). However if you want to use traditional views (MVC, html templates, security, forms etc) then please check something else (I tried it and lost many hours -- in the end I still couldn't do even basic things). For traditional web development, I recommend spring-boot which is almost as easy as dropwizard, it also doesn't need an application container and fully su…
What templating language did you use with Spring MVC?