vote up 5 vote down star

In ASP.NET MVC, we're required to use the suffix "Controller" for all controllers. This seems unnecessarily restrictive - is there a technical reason for it?

I'm mostly just curious, but can see situations where more flexible naming rules could improve code organization. Couldn't the discovery of possible controller classes be easily made using reflection to search for Controller derived classes? Or require that controller classes be marked with a ControllerAttribute?

flag

73% accept rate
@shog9: Thanks for the literacy improvement. – Augusto Radtke Nov 5 '08 at 18:50
@Augusto: no problem. – Shog9 Nov 5 '08 at 19:05

2 Answers

vote up 11 vote down check

The MVC community is heavily influenced by Ruby on Rails, which values "convention over configuration". By just naming things consistently, the application can run with zero configuration.

link|flag
You beat me to it! Here's a link: en.wikipedia.org/wiki/… – Adam Alexander Nov 5 '08 at 18:26
Yeah; thanks. I grabbed that, too. – Jacob Carpenter Nov 5 '08 at 18:26
vote up 1 vote down

One of the benefits of this convention is that it's common to have a URL segment, controller, and a model class all have the same name.

URL: /product/ Controller: Product : Controller Model: Product

This would cause a naming conflict. So we made a convention to have controller names suffixed with "Controller" to avoid this conflict. However, you can override this behavior via our extensibility APIs.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.