2
votes
1answer
17 views
What should be constructed through an IOC container?
Hi All,
How do you determine which classes should be constructed through an IOC container, and which ones shouldn't. I've worked on projects with both extremes and it seems like interfaces should …
1
vote
1answer
55 views
Parameterized controller constructor never gets hit
In my pet project I'm trying to learn to use Turbine as a DI container.
I'm registering unity as locatorprovider as such:
static MvcApplication()
{
ServiceLocatorManager.SetLocatorProvider(() …
1
vote
2answers
19 views
Service Layer to Automatically identify database to use
I am working on a asp.net MVC application.
The app is structured as follows:
Web MVC
Services - Business Rules
Data
The data layer is using LinqToSql to query the sql database.
When the user …
4
votes
3answers
50 views
Inversion of control domain objects construction problem
Hello!
As I understand IoC-container is helpful in creation of application-level objects like services and factories. But domain-level objects should be created manually.
Spring's manual tells us: …
0
votes
2answers
28 views
Windsor Resolving generic service SubTypes
interface IFoo<T> { }
interface IBar { }
class BarImpl : IBar { }
class FooImplA : IFoo<IBar> { }
class FooImplB : IFoo<BarImpl> { }
container.Register(
…
1
vote
1answer
61 views
Dependency Injection framework for the iPhone
I was wondering if there were any dependency injection frameworks for use with development on the iPhone. Being a Java developer by day, I enjoy, and see the benefits of, frameworks like Spring.
You …
-1
votes
4answers
144 views
what java dependency injection framework to use [closed]
Guice or Spring
1
vote
1answer
72 views
Dependency Injection by type using generics - how does it work?
Using Spring, I can get all beans of a certain type that are currently defined using this:
@Resource
private List<Foo> allFoos;
How does Spring do this? I thought type information of generics …
1
vote
1answer
20 views
Using dependency injection with Nlog
I'm using Nlog as my logger, however I cant seem to find an Ilogger interface in Nlog namespaces unlike log4net's Ilogger interface, do I have to create my own wrapper?
0
votes
1answer
50 views
Parameter unexpectedly initialized when invoked from unit test
I have a unit test invoking a constructor, passing in a "null" on purpose to test the handling of the null.
I expect the method invoked to throw an ArgumentNullException, but when I step through the …
0
votes
2answers
53 views
Structuremap (or any IoC, really) architecture question
I'm going to use structuremap for a project I'm working on. The basic gist is that I have a repository pattern with an NHibernate implementation, but I want to use StructureMap to load the …
0
votes
1answer
17 views
How to inject with Guice when there are two different constructors?
Total Guice noob here, have read a few articles and seen the intro video, that's about it.
Here's my simplified old code that I'm trying to "guicifiy". Can't quite figure out how to, since (as far as …
0
votes
1answer
36 views
What are the best practices for class libraries using dependency injection for internal operations?
What should I be careful about when building a class library complex enough to use internal dependency injection?
Assuming that it will use Castle Windsor (as an example), what would be the best …
5
votes
1answer
59 views
Mono compatible Dependency Injection Framework
Which Dependency Injection frameworks are compatible (and tested) against the Mono 2.4.2.3 runtime (Release Notes)?
1
vote
2answers
70 views
Inversion of Control or Dependency Injection — anyone doing it in C?
See, for example, here
http://stackoverflow.com/questions/139299/difference-between-dependency-injection-di-inversion-of-control-ioc
to remind yourself what IoC and DI are.
The question and answer …
