Which MVC framework - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T05:46:31Zhttp://stackoverflow.com/feeds/question/785705http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/785705/which-mvc-framework2Which MVC frameworkStrudel2009-04-24T12:53:10Z2009-04-24T13:30:57Z
<p>The following criteria has to be met:</p>
<ul>
<li>stable release (>= 1.0)</li>
<li>strong community (e.g. lots of forum posts)</li>
<li>active development (new releases coming out reasonably often)</li>
<li>good documentation</li>
<li>important: support (plugin, library, component) for embedding videos (videos will be hosted on local server, not on public video service provider). External component can be used.</li>
<li>preferred if it's based on PHP, Java, Ruby, Python</li>
</ul>
http://stackoverflow.com/questions/785705/which-mvc-framework/785709#7857093Answer by Ólafur Waage for Which MVC frameworkÓlafur Waage2009-04-24T12:54:37Z2009-04-24T12:54:37Z<p><a href="http://framework.zend.com/" rel="nofollow">Zend Framework.</a></p>
<ul>
<li>Very stable</li>
<li>Huge community and developed by the PHP Company</li>
<li>In active development</li>
<li>Very large and <a href="http://framework.zend.com/docs/overview" rel="nofollow">detailed documentation</a></li>
</ul>
http://stackoverflow.com/questions/785705/which-mvc-framework/785717#7857172Answer by J.W. for Which MVC frameworkJ.W.2009-04-24T12:56:45Z2009-04-24T12:56:45Z<p>Ruby on Rails</p>
http://stackoverflow.com/questions/785705/which-mvc-framework/785723#7857231Answer by slashnick for Which MVC frameworkslashnick2009-04-24T12:57:54Z2009-04-24T12:57:54Z<p>If you're happy with java <a href="http://www.springsource.org/" rel="nofollow">Spring</a> offers a pretty robust MVC framework, as well as a lot of other things which may be a plus or a minus depending on your needs. It meets all of you're requirements but I doubt it'll help with video embedding.</p>
http://stackoverflow.com/questions/785705/which-mvc-framework/785724#7857240Answer by Peter D for Which MVC frameworkPeter D2009-04-24T12:58:03Z2009-04-24T12:59:26Z<p>symfony (PHP framework)</p>
<p><a href="http://www.symfony-project.org/" rel="nofollow">http://www.symfony-project.org/</a></p>
http://stackoverflow.com/questions/785705/which-mvc-framework/785725#7857251Answer by mhd for Which MVC frameworkmhd2009-04-24T12:58:17Z2009-04-24T13:12:52Z<p>Here also a big fan of <a href="http://framework.zend.com" rel="nofollow">Zend framework</a>
More information about the available php mvc frameworks in a table, but there's a huge choice : <a href="http://www.phpwact.org/php/mvc%5Fframeworks" rel="nofollow">php mvc frameworks</a></p>
<p>another link <a href="http://www.mustap.com/phpzone%5Fpost%5F73%5Ftop-10-php-mvc-frameworks" rel="nofollow">Top 10 php frameworks</a></p>
<p>good luck</p>
http://stackoverflow.com/questions/785705/which-mvc-framework/785730#7857301Answer by Luixv for Which MVC frameworkLuixv2009-04-24T12:59:17Z2009-04-24T12:59:17Z<p>If you want a Java based framework (struts, JSF, etc)
then I would recommend to go for <strong>groovy on rails</strong></p>
<p>For php based go for zend.</p>
http://stackoverflow.com/questions/785705/which-mvc-framework/785741#7857414Answer by Koray Balci for Which MVC frameworkKoray Balci2009-04-24T13:02:28Z2009-04-24T13:02:28Z<p><a href="http://www.djangoproject.com/" rel="nofollow">Django</a>?</p>
http://stackoverflow.com/questions/785705/which-mvc-framework/785753#7857533Answer by John Topley for Which MVC frameworkJohn Topley2009-04-24T13:05:15Z2009-04-24T13:05:15Z<p>I recommend <a href="http://rubyonrails.org" rel="nofollow">Ruby on Rails</a>, for several reasons:</p>
<ul>
<li>Rails is pretty easy to get up and running with</li>
<li>Rails incorporates many best practices and established patterns e.g. <a href="http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller" rel="nofollow">MVC</a>, <a href="http://en.wikipedia.org/wiki/Representational%5FState%5FTransfer" rel="nofollow">REST</a> and <a href="http://en.wikipedia.org/wiki/Active%5Frecord%5Fpattern" rel="nofollow">ActiveRecord</a></li>
<li>It didn't used to be the case, but Rails now has lots of <a href="http://guides.rubyonrails.org/" rel="nofollow">high quality</a> and free <a href="http://railscasts.com/" rel="nofollow">documentation</a> and supporting <a href="http://peepcode.com/" rel="nofollow">resources</a> to help you learn</li>
<li>Lots of <a href="http://rubyonrails.org/applications" rel="nofollow">websites and applications</a> have already been built using Rails</li>
<li>Rails is under <a href="http://yehudakatz.com/" rel="nofollow">active development</a> and the future of the framework looks <a href="http://weblog.rubyonrails.org/2008/12/23/merb-gets-merged-into-rails-3" rel="nofollow">pretty bright</a></li>
</ul>
http://stackoverflow.com/questions/785705/which-mvc-framework/785852#7858521Answer by Chris for Which MVC frameworkChris2009-04-24T13:30:57Z2009-04-24T13:30:57Z<p>Personally, for PHP, I use <a href="http://codeigniter.com/" rel="nofollow">Code Igniter</a>. Very easy to pick up, and if you want you can extend it using the Zend Framework (<a href="http://freakauth.4webby.com/tutorials/using-zend-framework-components-in-code-igniter" rel="nofollow">see here</a> for an example).</p>