HTTP+JSON Services in Modern Java
nerds.airbnb.com
HTTP+JSON Services in Modern Java
1–10 of 18 posts
Re: HTTP+JSON Services in Modern Java
#2Re: HTTP+JSON Services in Modern Java
#3Re: HTTP+JSON Services in Modern Java
#4Re: HTTP+JSON Services in Modern Java
#5Re: HTTP+JSON Services in Modern Java
#6are you using maven, etc.? I would be very interested to find out how a ruby centric dev shop is handling Java deployments and builds.
P. S. how about mocks and testing?
Re: HTTP+JSON Services in Modern Java
#7Could you talk about how you're deploying these services. Coming from passenger world, I found jetty deployment to be a bit complex. are you using maven, etc.? I would be very interested to find out how a ruby centric dev shop is handling Java deployments and builds. P. S. how about mocks and testing?
Re: HTTP+JSON Services in Modern Java
#8I've build REST applications in Java using the Restlet library before, anyone knows some of the advantages of Jersey over Restlet?
Re: HTTP+JSON Services in Modern Java
#9Referring to: https://github.com/airbnb/twitter-commons-sample/blob/master...
Re: HTTP+JSON Services in Modern Java
#10Thanks for the introduction to Twitter Commons! I've used Dropwizard in the past and loved it. It seems like the shared libraries of both frameworks -- Jetty, Jersey, and Jackson -- provide them with an equally strong foundation. Guice seems to be provided by default in Twitter Commons whereas it's provided via a separate module in Dropwizard, so that's more or less another commonality between them. Can anyone descri…