Why do so many insist on dragging the JVM into new applications? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T09:32:43Zhttp://stackoverflow.com/feeds/question/765672http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/765672/why-do-so-many-insist-on-dragging-the-jvm-into-new-applications5Why do so many insist on dragging the JVM into new applications?Eric2009-04-19T16:32:31Z2009-04-24T14:28:30Z
<p>For example, I'm running into developers and architects who are scared to death of Rails apps, but love the idea of writing new Grails apps. </p>
<p>From what I've seen, there is a LOT of resource overhead that goes into using the JVM to support languages such as Groovy, JRuby and Jython instead of straight Ruby or Python. </p>
<p>Ruby and Python can both be interpreted on just about any OS, so I don't see any "write once run anywhere" advantage... why bring the hulking JVM along with you? </p>
http://stackoverflow.com/questions/765672/why-do-so-many-insist-on-dragging-the-jvm-into-new-applications/765682#76568225Answer by Chris Jester-Young for Why do so many insist on dragging the JVM into new applications?Chris Jester-Young2009-04-19T16:39:15Z2009-04-19T16:39:15Z<p>Java is a much, much more mature platform, with a lot of existing class libraries that could be "dropped in" and used, than, say, Ruby or Python (or even Perl, for that matter). So for people who like using existing code, rather than writing everything themselves, Java is a huge win.</p>
<p>For example, recently I've been looking for something like JAXB for Python or Ruby. In the end, I ended up using JRuby just because I haven't found any mature, widely-used XML-binding libraries.</p>
http://stackoverflow.com/questions/765672/why-do-so-many-insist-on-dragging-the-jvm-into-new-applications/765743#7657436Answer by Javier for Why do so many insist on dragging the JVM into new applications?Javier2009-04-19T17:16:02Z2009-04-19T17:16:02Z<blockquote>
<p>why bring to hulking JVM along with you?</p>
</blockquote>
<p>JVM isn't bloated, nor is it slow. on the contrary, it's a lean, fast, deeply optimized VM. Unfortunately, it's optimized for static OOP languages.</p>
<p>Still, good compilers targeting JVM do create good performing programs. I don't know about JRuby; but Jython's goal is to be all-around faster than regular C Python, and they're getting close (it's already faster at several important use cases).</p>
<p>Remember that a good JIT (like those for JVM) can apply some optimizations unavailable on static C compilers, getting faster code from them isn't a pipe dream. Of course, a VM optimized for your language <em>should</em> be faster than a 'not-really-generic' VM like JVM; but there's the maturity issue: JVM has a <em>lot</em> of work done there, while JITs for Ruby and Python aren't anywhere near.</p>
<p>Unfortunately, there doesn't seem to be any better generic bytecode VM. Microsoft's CLI suffers from similar limitations as JVM (ironPython is much slower and heavier than JPython). The best candidate seems to be LLVM. Does anybody know why isn't there more dynamic languages over LLVM? I've seen a couple of Scheme compilers, but seem to have several problems.</p>
http://stackoverflow.com/questions/765672/why-do-so-many-insist-on-dragging-the-jvm-into-new-applications/765832#7658329Answer by Michael Borgwardt for Why do so many insist on dragging the JVM into new applications?Michael Borgwardt2009-04-19T18:18:24Z2009-04-19T18:18:24Z<p>The huge advantage of writing code (in any language) for the JVM is that it's usually very easy to tap into the enormous wealth of mature Java libraries out there, if necessary.</p>
<p>And I don't know where you got this idea of a "hulking" JVM with a huge resource overhead. The JIT tends to produce code that is quite fast, and the core JVM is anything but huge by today's standards. It does tend to have a huge memory footprint when running, but that's because modern machines have a lot of RAM and the GC works best when it has a lot of RAM to play with. If desired, the GC can be <a href="http://java.sun.com/javase/technologies/hotspot/vmoptions.jsp" rel="nofollow">fine-tuned to hell and back</a> to be more conservative.</p>
<p>As someone else put it: "The best thing about Groovy is that I don't <em>have to</em> use Java. The second best thing about Groovy is that I <em>can</em> use Java".</p>
http://stackoverflow.com/questions/765672/why-do-so-many-insist-on-dragging-the-jvm-into-new-applications/765859#7658593Answer by Florin for Why do so many insist on dragging the JVM into new applications?Florin2009-04-19T18:34:55Z2009-04-19T18:34:55Z<p>Groovy is NOT an interpreted language, it is a dynamic language. The groovy compiler produces JVM bytecode that runs inside the JVM just like any other java class. In this sense, groovy is just like java, simply adding syntax to the java language that is meaningful only to developers and not to the JVM. </p>
<p>Developer productivity, ease and flexibility of syntax make groovy attractive to the java ecosystem - ruby or python would be as attractive if they resulted in java bytecode (see jython).</p>
<p>Java developers are not really scared of ruby; as a matter of fact many quickly embrace groovy or jython both close to ruby and python. What they don't care about is leaving such an amazing platform (java) for a less performant, less scalable even less used language such as ruby (for all its merits).</p>
http://stackoverflow.com/questions/765672/why-do-so-many-insist-on-dragging-the-jvm-into-new-applications/774899#7748992Answer by Equistatic for Why do so many insist on dragging the JVM into new applications?Equistatic2009-04-21T22:20:48Z2009-04-21T22:20:48Z<p>The big knock on RoR is that it isn't scalable and hard to deploy. By using the Java platform, you can leverage your existing infrastructure.</p>
<pre><code>grails war
</code></pre>
<p>Produces a war file that is easily deployed on Glassfish, Jboss, etc.</p>
http://stackoverflow.com/questions/765672/why-do-so-many-insist-on-dragging-the-jvm-into-new-applications/774966#7749663Answer by foljs for Why do so many insist on dragging the JVM into new applications?foljs2009-04-21T22:35:44Z2009-04-21T22:35:44Z<blockquote>
<p>Ruby and Python can both be
interpreted on just about any OS, so I
don't see any "write once run
anywhere" advantage... why bring the
hulking JVM along with you?</p>
</blockquote>
<p>Mostly because you want to take advantage of the HUGE existing ecosystem of Java libraries, APIs and products, which dwarfs anything available for Ruby or Python, especially in the enterprise domain.</p>
<p>Also, keep in mind that JRuby and Jython are <em>faster</em> in a lot of benchmarks than the regular (C implementations) of the languages, especially Ruby (even Ruby 1.9).</p>
<p>Having multiple languages targeting the same virtual machine has a lot of benefits, such as leveraging a common infrastructure, code reuse, shared APIs, the ability to use whatever language is conceptually best for you, or for a specific problem domain, etc.</p>
<p>The same things happens in the .NET space, with <a href="http://blogs.ugidotnet.org/nettools/articles/8060.aspx" rel="nofollow">multiple languages</a> targeting the CLR. The <a href="http://en.wikipedia.org/wiki/Parrot%5Fvirtual%5Fmachine" rel="nofollow">Parrot</a> (vaporware) VM project also aims to the same thing, and it's a stated goal of the <a href="http://llvm.org/" rel="nofollow">LLVM</a> project too.</p>
http://stackoverflow.com/questions/765672/why-do-so-many-insist-on-dragging-the-jvm-into-new-applications/774975#7749751Answer by Fortyrunner for Why do so many insist on dragging the JVM into new applications?Fortyrunner2009-04-21T22:38:23Z2009-04-21T22:38:23Z<p>The reason is Hotspot.</p>
<p>It is an engineering tour de force.</p>
http://stackoverflow.com/questions/765672/why-do-so-many-insist-on-dragging-the-jvm-into-new-applications/785577#7855771Answer by Chii for Why do so many insist on dragging the JVM into new applications?Chii2009-04-24T12:05:48Z2009-04-24T12:05:48Z<p>the other reason not many mentioned is existing infrastructure related to jvm - if you already have a server running java stuff, why not use it instead of bringing in yet another platform (like rails)?</p>
http://stackoverflow.com/questions/765672/why-do-so-many-insist-on-dragging-the-jvm-into-new-applications/786033#7860335Answer by John Landahl for Why do so many insist on dragging the JVM into new applications?John Landahl2009-04-24T14:15:43Z2009-04-24T14:28:30Z<p>An assumption that seems to be built into the question is that new projects are <a href="http://en.wikipedia.org/wiki/Greenfield%5Fproject" rel="nofollow">greenfield projects</a>. Many organizations have made a huge investment in Java over the last decade+ and require any new project to work within the existing (internal) code ecosystem. As pointed out, there's a huge bonus in all the publicly available Java libraries (whether free/OSS or commercial), but the need to work with existing code and even as a component within an existing system is at least as important (if not more so) to large organizations.</p>
<p>A lot also comes down to the maturity and capability of the platform, which is to say the JVM and everything that comes with it (the entire Java ecosystem). A few examples off the top of my head:</p>
<ul>
<li><p>You can plug a remote debugger into a running JVM and get all kinds of information about a running application that is simply impossible with Python, Ruby, etc. Going a step further, there's <a href="http://en.wikipedia.org/wiki/Java%5FManagement%5FExtensions" rel="nofollow">JMX</a>, a standard way to write code so that objects can be monitored and even tweaked in a live application. Take a look at <a href="http://java.sun.com/developer/technicalArticles/J2SE/jconsole.html" rel="nofollow">JConsole</a> and see if you don't drool just a little (despite the ugliness of the interface).</p></li>
<li><p>Going even further in this direction, there's <a href="http://en.wikipedia.org/wiki/OSGi" rel="nofollow">OSGi</a>, a standard for writing highly modular code that can be deployed, started, stopped, and even upgraded in a live application. With OSGi you break a large application into many smaller "bundles" which can then be maintained (deployed, started/stopped, upgraded) separately. This is a really big deal in large applications, or any applications that need to remain running at all times.</p></li>
<li><p>The platform has <em>very</em> good support for asynchronous, reliable messaging. You get <a href="http://en.wikipedia.org/wiki/Java%5FMessage%5FService" rel="nofollow">JMS</a> as a baseline, and many excellent and powerful libraries built on it for doing complicated things with very little code (cf. <a href="http://camel.apache.org/" rel="nofollow">Apache Camel</a>, <a href="http://servicemix.apache.org/home.html" rel="nofollow">ServiceMix</a>, <a href="http://www.mulesource.com/" rel="nofollow">Mule</a>, and many others). This is another feature that's extremely valuable in larger applications or those which must run within a larger code universe.</p></li>
<li><p>The JVM has real (OS-level) threading, while Python et al. are <em>very</em> limited in this regard (notoriously so). (That being said, shared state concurrency -- threading -- is the wrong approach; cf. <a href="http://erlang.org/" rel="nofollow">Erlang</a>, <a href="http://www.ps.uni-sb.de/alice/" rel="nofollow">Alice</a>, <a href="http://www.mozart-oz.org/" rel="nofollow">Mozart/Oz</a>, etc.)</p></li>
<li><p>There are numerous JVM choices beyond the standard Sun implementations, like <a href="http://www.oracle.com/technology/products/jrockit/index.html" rel="nofollow">JRockit</a>, IBM's JVM, etc. This is a developing area with other languages -- Python has Jython, Iron Python, even PyPy and Stackless; Ruby has JRuby, Rubinius, and <a href="http://antoniocangiano.com/2007/12/03/the-great-ruby-shootout/" rel="nofollow">others</a> -- but as good as these are they can't match the maturity found in the various JVM offerings.</p></li>
</ul>
<p>All that being said, I really don't like Java <em>the language</em> and avoid it as much as possible. These days with all the excellent alternative languages for the JVM I don't have to. Groovy gets my vote for its accessibility and tight integration with the platform (and even the language), and because of Grails, which I sometimes like to call "Rails for grownups". I like other JVM languages better, particularly <a href="http://clojure.org/" rel="nofollow">Clojure</a> and <a href="http://www.scala-lang.org/" rel="nofollow">Scala</a>, but these aren't as accessible to the average programmer. Scala is popping up a lot lately, though, especially thanks to its <a href="http://developers.slashdot.org/article.pl?sid=09/04/07/1928218" rel="nofollow">high profile use at Twitter</a>, so there's hope for interesting and truly excellent languages making it in larger environments. But that's another topic.</p>