Settings

Theme

HTTP+JSON Services in Modern Java

nerds.airbnb.com

76 points by AirbnbNerds 13 years ago · 17 comments

Reader

Cyranix 13 years ago

Thanks 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 describe differences or pros/cons between using these two frameworks? (Similarly, who was being referenced in the phrase "an opinionated framework that forces certain patterns on you")?

  • tknaup 13 years ago

    Dropwizard wasn't around yet when we built our first service.

    I'm not referencing any particular framework, but Rails is an example. Recently the Rails team has done a lot to modularize it too though.

  • reissbaker 13 years ago

    I can't speak for Tobi, but my guess is he was talking about Rails. DHH isn't coy about having strong opinions.

mintplant 13 years ago

This would be a far better article if it was interwoven with actual code examples. Otherwise, you'd have to switch back and forth between a copy and their code and the blog page to actually grok what they're talking about.

sandGorgon 13 years ago

Could 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?

  • csense 13 years ago

    Please, if you're starting a new Java project, and have any say at all in the build process, don't use Maven. Go with Ant. You'll thank yourself later, and anyone else who ever has to build the project will also thank you.

    Personally, I can't begin to describe the awfulness of Maven in words. I'd sooner use makefiles and shell scripts, or manually type in build commands written in pen on a stack of notecards.

    But you don't have to take my word for it; here's an SO discussion about how much Maven sucks:

    http://stackoverflow.com/questions/861382/why-does-maven-hav...

    • sandGorgon 13 years ago

      interesting - so did you decouple dependency management from tge build process and still use maven/ivy for that part?

  • tknaup 13 years ago

    This would be another blog post by itself. In short: build a fat jar with maven, package with arx, run with runit.

    Most projects use Junit and Easymock.

  • PascalW 13 years ago

    I work in a Ruby + Java shop and we do Java deployments with maven + nexus + capistrano. Works like a champ.

    I'll see if I have some time to write a blogpost about it.

  • keefe 13 years ago

    jetty is best deployed embedded

frncscgmz 13 years ago

I've build REST applications in Java using the Restlet library before, anyone knows some of the advantages of Jersey over Restlet?

  • avelis 13 years ago

    I haven't played with Restlet. From my experience Jersey's magic sauce is its annotations. Jersey's featured set of annotations can allow for expressive source code. Basically I can create and define my API with less boilerplate source code.

neuronotic 13 years ago

Did anyone have success at getting this to work? I'm getting this error:

com.twitter.common.application.AppLauncher exit

SEVERE: Failed to apply arguments

java.lang.IllegalArgumentException: Failed to parse:

app_class - No parser found for java.lang.Class<? extends com.twitter.common.application.Application>

ElectronPusher 13 years ago

Minor gripe, but a list seems wrong for that usage. A map or set seems more appropriate.

Referring to: https://github.com/airbnb/twitter-commons-sample/blob/master...

rshm 13 years ago

404 here.

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection