vote up 0 vote down star

If you are already using Unity as a part of your project, is there any sense in bothering with writing traditional configuration classes?

Doing so seems like it's extra work, but the positives would be more domain specific XML tag names and more concise XML. But then the question becomes when you draw the line between the two and consistency as well.

In the past, when using Spring.NET for IoC, I've used a mix of the two, but I'm wondering if doing so is just reducing the level of consistency in configuration. Certainly, if you are not already using the libraries for IoC/DI, it seems like overkill to use them simply for runtime configuration purposes, but if you are, what approach would you take?

flag

1 Answer

vote up 0 vote down

Many developers follow the YAGNI (You aint gonna need it) approach and therefore would not use xml config files as they are seen as overly complicating a simple issue.

I prefer to follow the CMA (cover my a**) approach and put things into xml config files to allow the flexibility of swapping dll's in and out of the application based on customer's requirements / management meltdowns!

One other mechanism I have seen used is a directory searcher which scans a specified directory for dll's and then uses reflection to find a specific interface implementation, this interface usually has a simple method like RegisterServices or Initialize. There is an example of this within the WPF & Silverlight composite application on codeplex, the interface to look for is IModule.

Either way you go I do feel that using DI / IoC is the best approach to ensure you're app is modular and testable. Yes the configuration of it does take a little extra setup work but the 1st time you get a manager saying "I've talked to this partner and they're now going to provide this service for us, make it work" and all you have to do is write some code which implements an interface and then change a dll in a config file, you'll realize the flexibility it gives you.

link|flag
Well, the question isn't whether I should or shouldn't use XML configuration files DI/IoC but rather if I am using DI/IoC, should I write configuration classes using System.Configuration a la: msdn.microsoft.com/en-us/library/… – charliedigital Jun 15 at 20:55
In my opinion I would use whichever xml config format is supported by the IOC / DI container you prefer. Each one has a different format and if you have a specific container you prefer then use that format. If you try to use the System.Configuration namespace you're probably creating more work for yourself if the container doesn't support system.configuration by default. – Peter Jun 15 at 22:27

Your Answer

Get an OpenID
or

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