Tagged Questions

0
votes
3answers
122 views

ASP.NET MVC: convention for organizing ViewModels

As discussed throughout the various MVC questions and blogposts, we know that the ASP.NET MVC project layout is heavy on convention. I blindly made a sub-directory in the Controllers folder. This …
2
votes
2answers
840 views

Convention over configuration with Spring MVC using ControllerClassNameHandlerMapping?

Following the directions from Spring Source and the book Spring in Action, I am trying to set up Spring MVC in a way that minimizes xml configuration. However according to Spring Source this is how …
4
votes
2answers
197 views

Can Autofac do automatic self-binding?

I know some DI frameworks support this (e.g. Ninject), but I specifically want to know if it's possible with Autofac. I want to be able to ask an Autofac container for a concrete class, and get back …
8
votes
2answers
267 views

Convention over configuration in ASP.NET MVC

I am relatively new to ASP.NET MVC, and am very impressed with the clarity of the platform so far. However, there is one aspect that I find uncomfortable. At first, I accepted the fact that when I …
1
vote
1answer
99 views

How Rails be configured to access a media resource that is not in its conventional directory location?

Let's say I have an image that does not reside in the normal location: {appname}/public/images/unconventional.gif But instead here: {appname}/unconventional.gif I understand this is a complete …
0
votes
1answer
37 views

Sensible defaults for configuration

I've recently started to play with Ruby on Rails which favours convention over configuration and relies on sensible defaults to tie various aspects of the application together. I was thinking that it …
0
votes
2answers
101 views

Convention over Configuration go against loose coupling?

Something a lot of programmers seem to be abiding by is Convention of Configuration. In the context of IoC this means using the API instead of XML configuration. How are you supposed to keep the …