Jetty: To embed or not to embed?

i’d use jetty embedded when the goal is to create a standalone application in which jetty is just one of the components (for example in an osgi container). if you just want to deploy some war’s then a default jetty installation seems more preferable.
i don’t think the choice depends on whether you plan to deploy more than one webapp. when you embed jetty you’ll have to do the plumping yourselves in your code.

Leave a Comment