Best Web applications framework for Java? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T16:20:10Zhttp://stackoverflow.com/feeds/question/257712http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/257712/best-web-applications-framework-for-java3Best Web applications framework for Java?askgelal2008-11-03T01:22:02Z2009-08-08T14:31:13Z
<p>Which is the best framework for Java? I'm looking for something similar to Symfony for php and Ruby-On-Rails for Ruby? I even don't know if anything such exists for Java or not.</p>
http://stackoverflow.com/questions/257712/best-web-applications-framework-for-java/257734#2577340Answer by TM for Best Web applications framework for Java?TM2008-11-03T01:33:56Z2008-11-03T01:33:56Z<p><a href="http://struts.apache.org/" rel="nofollow">Struts</a> is for suits.</p>
http://stackoverflow.com/questions/257712/best-web-applications-framework-for-java/257754#2577545Answer by Steve K for Best Web applications framework for Java?Steve K2008-11-03T01:50:26Z2008-11-05T15:17:35Z<p>There are many great web frameworks for java, but if your looking for something that is similar to Rails, look at <a href="http://grails.org/" rel="nofollow">Grails</a>. It uses <a href="http://groovy.codehaus.org/" rel="nofollow">Groovy</a>, which is dynamic language, but uses the Java VM. </p>
<p>Check out their <a href="http://grails.org/Quick+Start" rel="nofollow">quick start</a> to determine if it's what you want.</p>
http://stackoverflow.com/questions/257712/best-web-applications-framework-for-java/257769#2577694Answer by Ray Tayek for Best Web applications framework for Java?Ray Tayek2008-11-03T02:02:48Z2008-11-03T02:02:48Z<p>i like grails, but there are a lot of these things out there, matt raible sems to have a good handle on them:</p>
<p><a href="http://static.raibledesigns.com/repository/presentations/ComparingJavaWebFrameworks-ApacheConEU2007.pdf" rel="nofollow">http://static.raibledesigns.com/repository/presentations/ComparingJavaWebFrameworks-ApacheConEU2007.pdf</a>
<a href="http://raibledesigns.com/rd/entry/the_web_framework_smackdown_questions" rel="nofollow">http://raibledesigns.com/rd/entry/the_web_framework_smackdown_questions</a>
<a href="http://en.oreilly.com/oscon2008/public/schedule/detail/2651" rel="nofollow">http://en.oreilly.com/oscon2008/public/schedule/detail/2651</a></p>
http://stackoverflow.com/questions/257712/best-web-applications-framework-for-java/257777#2577770Answer by Tim Howland for Best Web applications framework for Java?Tim Howland2008-11-03T02:07:53Z2008-11-03T02:07:53Z<p>I agree with the other folks who are suggesting grails- I'm using it on a couple of apps now, and it's the closest thing I've found to a java flavored ruby on rails. That said, why not use JRuby? My understanding is that they have Rails running on it now.</p>
http://stackoverflow.com/questions/257712/best-web-applications-framework-for-java/257779#2577790Answer by Jack Leow for Best Web applications framework for Java?Jack Leow2008-11-03T02:08:34Z2008-11-03T02:08:34Z<p>I'm not sure if you're being sarcastic or not, but if you're not here's a partial list of Java Web Frameworks:</p>
<ol>
<li>Java Server Faces (official Sun spec), various implementations are available</li>
<li>Apache Struts</li>
<li>Apache Shale</li>
<li>Apache Tapestry</li>
<li>Apache Wicket</li>
<li>OpenSymphony WebWork</li>
<li>Spring Framework MVC</li>
</ol>
<p>Having only used a few of these, I can't really tell you which one is the best. Spring MVC is my personal favorite for more content oriented sites, but I'd use JSF if it's more the traditional web application (application with a web interface).</p>
<p>The joke amongst Java developers, generally, isn't <em>if</em> there's a framework/library for a certain application, but which of the dozens of options to use.</p>
http://stackoverflow.com/questions/257712/best-web-applications-framework-for-java/257782#2577820Answer by Pablo Marambio for Best Web applications framework for Java?Pablo Marambio2008-11-03T02:09:53Z2008-11-03T02:09:53Z<p>Tapestry looks very cool... after you have made a BIG effort to install it.</p>
http://stackoverflow.com/questions/257712/best-web-applications-framework-for-java/257790#2577903Answer by Marc Bollinger for Best Web applications framework for Java?Marc Bollinger2008-11-03T02:19:08Z2008-11-03T02:19:08Z<p>It depends on what you want to do, but the short answer is: boy, are there! Note, however, that answer does not indicate whether the myriad of options is good or bad. Java's server side community tends to be a lot more fragmented, and while there aren't that many alternatives to Rails used in actual practice for Ruby, each of the camps on the Java side seem to be fairly well manned.
As Taylor Marshall mentioned, there's Struts, which is used most often in industry (as it's the oldest still-in-use OSS MVC container I know of. But no one seems to like Struts anymore. The <a href="http://jakarta.apache.org/" rel="nofollow">Ex-Jakarta</a> menu on the Apache Jakarta page shows a number of Web Application frameworks that they've incubated, including <a href="http://tapestry.apache.org/" rel="nofollow">Tapestry</a>, <a href="http://turbine.apache.org/" rel="nofollow">Turbine</a>, and <a href="http://velocity.apache.org/" rel="nofollow">Velocity</a>. There's also <a href="http://wicket.apache.org/" rel="nofollow">Wicket</a> (a very decent comparison of Wicket and Tapestry is available <a href="http://www.ibm.com/developerworks/java/library/os-tapestrywicket/index.html?ca=drs" rel="nofollow">here</a>). Oh, and <a href="http://java.sun.com/javaee/javaserverfaces/" rel="nofollow">Java Server Faces</a>. And SpringMVC. Tapestry and Wicket (in particular) seem to be gaining ground, while everyone seems to have a horror story about JSF. Your mileage will absolutely vary here, and eesh, looking up at the links in just this answer, maybe Groovy would be simpler.</p>
http://stackoverflow.com/questions/257712/best-web-applications-framework-for-java/257961#2579610Answer by Jeduan Cornejo for Best Web applications framework for Java?Jeduan Cornejo2008-11-03T04:56:44Z2008-11-03T04:56:44Z<p>I read about JBoss Seam and it seems nice too</p>
http://stackoverflow.com/questions/257712/best-web-applications-framework-for-java/258246#2582463Answer by Georgy Bolyuba for Best Web applications framework for Java?Georgy Bolyuba2008-11-03T09:52:58Z2008-11-03T09:52:58Z<p>Take a look at Spring. I think it will do anything Ruby-On-Rails can do (you can also add Hibarnate for ORM).</p>
http://stackoverflow.com/questions/257712/best-web-applications-framework-for-java/258786#2587862Answer by matt b for Best Web applications framework for Java?matt b2008-11-03T14:31:57Z2008-11-03T14:31:57Z<p><a href="http://stackoverflow.com/questions/248272/aspnet-mvc-framework-port-for-java-ee#248913">As I outlined in a previous answer</a>, I like Spring MVC.</p>
http://stackoverflow.com/questions/257712/best-web-applications-framework-for-java/258788#2587881Answer by Mark Sailes for Best Web applications framework for Java?Mark Sailes2008-11-03T14:32:03Z2008-11-03T14:32:03Z<p>I have really enjoyed using Grails it makes extensive use of the Hibernate and Spring frameworks. The way it seperates the model view and controller is great.<a href="http://grails.org/GORM" rel="nofollow">GORM</a> (Grails' object relational mapping (ORM) implementation) is amazing and
there are plans to separate it out into its own stand alone product.</p>
<p>Security is very easy using the <a href="http://grails.org/AcegiSecurity+Plugin" rel="nofollow">Spring Acegi security plugin</a></p>
<p>Also worth looking at is the <a href="http://grails.org/Searchable+Plugin" rel="nofollow">Searchable plugin</a> which implements a full text search very quickly and easily.</p>
http://stackoverflow.com/questions/257712/best-web-applications-framework-for-java/259915#2599150Answer by Kevin Kaske for Best Web applications framework for Java?Kevin Kaske2008-11-03T20:52:04Z2008-11-03T20:52:04Z<p>Grails is fantastic if you need to run on a JVM. If you want to stick strictly to Java (not a dynamic language), I think spring would be your best bet.</p>
http://stackoverflow.com/questions/257712/best-web-applications-framework-for-java/288605#2886051Answer by hendrixski for Best Web applications framework for Java?hendrixski2008-11-13T22:40:12Z2008-11-13T22:40:12Z<p>Hands down, Grails.</p>
<p>Just download it from Grails.org and start working through the examples, and screencasts. The guys who make it just got bought by SpringSource, so it's guaranteed to go places!</p>
http://stackoverflow.com/questions/257712/best-web-applications-framework-for-java/1249028#12490280Answer by ראובן for Best Web applications framework for Java?ראובן2009-08-08T14:31:13Z2009-08-08T14:31:13Z<p>I just got started with Groovy/Grails and it's looking good. What's nice is you can leverage all the existing Java technlogy.</p>