Sohan
Sohan

Reputation: 3807

Deploying JRuby on Rails application

First time I am working on a JRuby on Rails application. I was wondering what is the de facto deployment stack for JRuby on Rails app. So far I see the following:

  1. Jetty
  2. Tomcat

Please share why you would think in favor of one over the other. Thank you for your time.

Upvotes: 1

Views: 338

Answers (2)

arkadiy kraportov
arkadiy kraportov

Reputation: 3729

The question really is which container has better support in your infrastructure or by your service provider.

In my company JBoss 5.2 is the only way to deploy any web apps. That's why we chose JRuby over MRI in the first place.

Upvotes: 0

Luke
Luke

Reputation: 3381

There's no a de facto deploymanet stack, you can choose what you prefer or what you think is better. I personally use warbler to package my rails app as war and deploy it on JBoss.

If you need something more integrated there is Torquebox http://torquebox.org, which let you use messaging, clustering, etc... Give it a try because it's really powerfull!

Upvotes: 1

Related Questions