http://www.perlmonks.org?node_id=411993


in reply to RFC: Apache::Controller

First things first: I don't think the "perfect" framework for web applications has been invented yet, so ++ for giving it a shot.

One thing I don't like is that the template is too tightly coupled to the action - it's entirely possible that several related actions want to use the same template, or for an action to have more than one resulting template.

For instance:
form -> (submit action) -> form again, with missing data highlighted -> (submit action) -> confirmation screen.

By deriving the template name from the classname of the action you need to create extra templates that will probably only include the "real" template.

Also, I'm sceptical about using classes to describe actions. See my comment in the CGI::Prototype thread.

Lastly, I would like more hooks in the code - some place to do general setup or session management would be nice for instance (maybe by inheriting from the Apache::Controller). See CGI::Application and CGI::Prototype for examples :-)