Working in web development we see numerous amount of web frameworks growing everyday. We also see people comparing framework X vs framework Y. But technically they all boil down to two types: fullstack or just a glue webframework.
A fullstack web framework is a web framework that offers front to back framework. Django and RIFE can bee seen as a framework of this type, where it has its own templating language and ORM.
On the other hand, a glue webframework is a framework that just acts as a glue to the other different components and leave the decision to developer to pick the ORM, templating, etc. Pylons and Spring framework can fall under this type.
So, the question is: as a developer, would you prefer choosing a fullstack framework or just a glue framework and then choose the ORM and templating by yourself? And why?