Tagged Questions
The convention-over-configur tag has no wiki summary.
11
votes
1answer
949 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 ...
8
votes
1answer
26 views
Static Checking for Framework Conventions
Is there a product/project that would allow you to define conventions for say an MVC Project to statically check for naming conventions like Controller being appended on the end of classes that ...
6
votes
3answers
455 views
What are your Common Magento Configuration Mistakes? [closed]
If there's something that everybody hates about Magento it's endlessly configuring your modules before being able to write some code. I'm trying to collect a list of common Magento configuration ...
5
votes
2answers
843 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 ...
4
votes
6answers
754 views
Do you find convention over configuration good or bad?
I did a fair amount of experimenting with Ruby on Rails and its convention over configuration, which gave me a lot of functionality automatically. But later I found that I wasn't sure I like the ...
3
votes
2answers
145 views
Convention Over Configuration - Is this a proper scenario?
I have some Result classes that represent flat results in an object oriented fashion. The flat result comes in as a text stream, and a Formatter formats the flat results into the properties of the ...
3
votes
2answers
3k 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 ...
2
votes
0answers
61 views
StructureMap RegistrationConvention for decorator pattern
I'm using the decorator pattern to implement caching for my Repositories as such:
IFooRepository()
IFooRepository FooRepository()
IFooRepository CachedFooRepository(IFooRepository fooRepository)
...
2
votes
0answers
86 views
How can I use Caliburn.Micro conventions to set a button's text and its action?
If I have a button in my View named, say, Save, then I can add a Save property to my ViewModel, and Caliburn.Micro will automatically bind it to my button's Content. For example:
public string Save { ...
2
votes
1answer
139 views
Ruby on Rails Unit Testing
I'm currently writing unit tests for my Ruby on Rails application, and one of my models is a normal Ruby class for parsing XML files.
I now wish to write unit tests for this class using a correct and ...
1
vote
2answers
20 views
in Rails where do you put your Sweepers?
Is there a convention in Rails to put Sweeper classes in a particular directory location?
UPDATE: Since observers are put into app/models, I'm assuming sweepers are no different, as long as the name ...
1
vote
1answer
113 views
Set instance lifecycle with StructureMap convention based registration
I'm trying to use StructureMap 2.6.1 to register all my repositories at once using the convention based registration. See the code bellow :
x.Scan(s =>
{
s.TheCallingAssembly();
...
1
vote
1answer
81 views
Convention-driven configuration for WCF (server-side)
Just started on a new project and opened up a 1600 line web.config file for a WCF project, where 90% of the services are configured identically (hmfph).
I like a project to be easy to manage, with ...
1
vote
2answers
124 views
Benefits of the “Convention over Configuration” paradigm
What are the benefits of the "Convention over Configuration" paradigm in web development? And are there cases where sticking with it don't make sense?
Thanks
1
vote
1answer
92 views
Spring MVC: CoC for requesting mapping
Having used other MVC frameworks such as Zend Framework in the past, I am used to the idea of requests being mapped as follows by default.
http://mysite.com/user/add calls the add method in the User ...
1
vote
2answers
203 views
Adding more CoC to Django
I come from a Cake background, and I'm just starting to learn Django now. I'm liking it quite a bit, but I kinda wish it used convention over configuration like cake does. So,
How can I get ...
1
vote
1answer
176 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
0answers
10 views
DB pesistance with Convention over Configuration style
Does hibernate/any other ORM frameworks provides Convention over configuration style for POJO mapping?
0
votes
1answer
32 views
Does cmake use convention over configuration?
Maven is said to employ a form of Convention over Configuration.
I don't want to draw any wrong comparisons but as far as I understand cmake can fill a similar roll for a C++ project as maven can for ...
0
votes
1answer
31 views
wcf framework / project to remove a lot of the configuration to use convention over configuration
We are moving a WPF app across to use WCF and POCO. So far there are 10 or so services, but this will grow with time. It seems to me that we are having to repeat a lot of rubbish (the same text, I ...
0
votes
3answers
218 views
Serving static content to my action using MVC's convention approach
I'm looking at outsourcing some in-page help on a large web application I am creating and would like to make it really easy for this content to added to our pages when we're ready for it.
So I was ...
0
votes
2answers
155 views
Why Django static and media folders aren't pre-configured?
I was presenting a Django demonstration to my brother and he asked me the following question(s): "Why Django static and media folders aren't pre-configured? It's purpose aren't to be a convention over ...
0
votes
1answer
264 views
Removing a trailing slash in MSBuild / Convention based filename generation
I'm trying to search for a set of assemblies based on the following convention within a directory:
{SubDirName}\{SubDirName}.dll
I've started by creating an MSBuild ItemGroup [by batching another ...
0
votes
3answers
613 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 ...
0
votes
1answer
59 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
228 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 ...
-1
votes
2answers
264 views
Suggested directory structure/placement of ASHX files
Thanks to the published ASP.NET MVC conventions, I'm looking much more closely at the idea of universal conventions over configuration for my projects (versus 'home-rolled' conventions, or grabbing ...