Which MVC framework - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T05:46:31Z http://stackoverflow.com/feeds/question/785705 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/785705/which-mvc-framework 2 Which MVC framework Strudel 2009-04-24T12:53:10Z 2009-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#785709 3 Answer by Ólafur Waage for Which MVC framework Ólafur Waage 2009-04-24T12:54:37Z 2009-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#785717 2 Answer by J.W. for Which MVC framework J.W. 2009-04-24T12:56:45Z 2009-04-24T12:56:45Z <p>Ruby on Rails</p> http://stackoverflow.com/questions/785705/which-mvc-framework/785723#785723 1 Answer by slashnick for Which MVC framework slashnick 2009-04-24T12:57:54Z 2009-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#785724 0 Answer by Peter D for Which MVC framework Peter D 2009-04-24T12:58:03Z 2009-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#785725 1 Answer by mhd for Which MVC framework mhd 2009-04-24T12:58:17Z 2009-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#785730 1 Answer by Luixv for Which MVC framework Luixv 2009-04-24T12:59:17Z 2009-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#785741 4 Answer by Koray Balci for Which MVC framework Koray Balci 2009-04-24T13:02:28Z 2009-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#785753 3 Answer by John Topley for Which MVC framework John Topley 2009-04-24T13:05:15Z 2009-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#785852 1 Answer by Chris for Which MVC framework Chris 2009-04-24T13:30:57Z 2009-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>