Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
158 views

Ninject multi-injection is not as greedy as I would have thought! How come?

If I have a class with a ctor set up for multi-injection like this: public Shogun(IEnumerable<IWeapon> allWeapons) { this.allWeapons = allWeapons; } And bindings set up like this: ...
8
votes
5answers
126 views

IoC with value type and object type dependencies

I am looking for suggestions as to the best way to design objects for IoC Suppose I have an object (Service) that has a dependency to a DataContext which is registered with Ioc. But it also requires ...
7
votes
2answers
7k views

MEF Constructor Injection

I'm trying to figure MEF's Constructor Injection attribute. I have no idea how i tell it to load the parameters to the constructor. This is property i'm trying to load ...
5
votes
2answers
119 views

Constructor Injection - where to call?

I'm a little bit confused around Constructor Injection pattern and rule Don’t call the container; it’ll call you. Can somebody explain me (and maybe someone else) how real application should derive ...
5
votes
5answers
2k views

Spring constructor injection of SLF4J logger - how to get injection target class?

I'm trying to use Spring to inject a SLF4J logger into a class like so: @Component public class Example { private final Logger logger; @Autowired public Example(final Logger logger) { ...
5
votes
3answers
6k views

Constructor Injection in C#/Unity?

I'm using C# with Microsoft's Unity framework. I'm not quite sure how to solve this problem. It probably has something to do with my lack of understanding DI with Unity. My problem can be summed up ...
3
votes
1answer
31 views

Is a main goal of DI to manage object lifetime?

From Pro ASP.NET MVC 3 Framework, "What we need is a way to obtain objects that implement a given interface without needing to create the implementing object directly." Aside from decoupling - which ...
3
votes
1answer
130 views

EasyMock: Mock out a constructor call in java

I have a looked at similar questions on this board, but none of them answer my question. This sound strange, but is it possible to mock out a constructor call on the object you're mocking. Example: ...
3
votes
2answers
295 views

How to inject two instances of same object using Autofac?

I'm using Autofac constructor injection. I need to figure out how to inject a single object instance into more than one constructor argument, without needing to explicitly resolve each argument ...
3
votes
2answers
403 views

Ninject, Providers and Activator.CreateInstance

I'm fairly new to Ninject, but I have successfully managed to use it for DI using a custom provider. The binding is initialised as follows kernel = new StandardKernel(); ...
3
votes
1answer
129 views

DI, Constructor Injection, Modules, design patterns

I'm facing some architectural problems on the project I'm involved in. The project is an ASP.NET MVC 2 application that relies on DI and especially on constructor injection with Unity. The application ...
3
votes
1answer
308 views

Ninject 2.0: Passing different parameters depending on implementation

I have just started to work with Ninject 2.0 with ASP.NET MVC 2. So, I have an interface IMongoRepository and class MongoRepository. MongoRepository receives a parameter string collection. Depending ...
3
votes
3answers
1k views

JAXB constructor injection

I would like to know how I can make the JAXB compiler make certain elements in my XML schema be declared as final in the java class definition and I would also like to be able to control the different ...
2
votes
2answers
53 views

Constructor Injection - Do we inject factories as well?

After listening to the Clean Code Talks, I came to understand that we should use factories to compose objects. So for example if a House has a Door and a Door has a DoorKnob, in HouseFactory, we ...
2
votes
1answer
56 views

Dependency Injection - construction

I want to know if I am on the right track of thought here, I am programming mainly to interfaces so I want to know if the classes below should be injected via DI or should I instantiate a class ...
2
votes
2answers
61 views

How do I constructor-autowire HttpServletResponse in Spring 3.1?

I have a request scoped bean, and I need to have access to the HttpServletResponse and HttpServletRequest objects. I need access to these objects in the constructor, so property autowiring is not an ...
2
votes
1answer
53 views

Unity Framework and Multiple Constructors Injection

I have a class as a dependency: public class Foo { public Foo() { // default constructor } public Foo(IMyInterface my) { } } When I tried to inject it into another class I ...
2
votes
2answers
110 views

StructureMap: Choose concrete type of nested dependency

Calculators: public interface ICalculator { int Calculate(int a, int b); } public class Calculator : ICalculator { private readonly ICalculatorStrategy _calculatorStrategy; public ...
2
votes
1answer
398 views

How to use Ninject in constructor injection of a type in an external assembly

I am loading a type from an external assembly and want to create an instance of the type. However, this type/class is setup for constructor injection by objects currently being managed/bound by ...
2
votes
1answer
1k views

GlassFish, CDI and Constructor Injection

Is constructor injection supported in GlassFish 3.1's implementation of CDI for managed beans? I have a @Singleton EJB into which I want to inject another managed bean (contained in the same EJB ...
2
votes
2answers
75 views

How to instantiate objects of classes that have dependencies injected?

Let's say I have some class with dependency injected: public class SomeBusinessCaller { ILogger logger; public SomeBusinessCaller(ILogger logger) { this.logger = logger; } } My ...
1
vote
1answer
39 views

CDI constructor injection don't work with transient non-serializable dependencies

I like the constructor injection of CDI a lot but now I found a usecase where constructor injection apparently doesn't work as expected. In my example I have two classes. Class "BeanA" has no ...
1
vote
2answers
67 views

Default constructor parameter values in ASP.Net MVC?

I’m using MVC3, with the Razor syntax, and am going over an example in the Apress book “Pro ASP.Net MVC 3 Framework” (which is very good). In it the author has this bit in a _Layout.cshtml file: ...
1
vote
2answers
110 views

How to configure Unity to inject an array for IEnumerable

I have a class which takes an IEnumerable constructor parameter which I want to resolve with Unity and inject an array of objects. These simple classes illustrate the problem. public interface ...
1
vote
1answer
40 views

Is there a way to hint which constructor Unity should use?

Unity's InjectionConstructor works well when you need to invoke a specific constructor because you have very specific dependencies in mind (e.g. any mix of external dependencies, named registrations, ...
1
vote
2answers
75 views

Springframework constructor-arg

I have a MainClass which have 2 variables. I would like to pass those 2 values to a springframework bean class "Test". how do I define that in applicationContext.xml and also how do I pass those 2 ...
1
vote
1answer
150 views

Is it possible to inject parameters into protected constructors using Unity?

I can do this in Castle Windsor: public abstract class AbstractFactory { protected AbstractFactory(Foo constructorParm) { // Do something with parameter... } } public class ...
1
vote
3answers
2k views

Using [ImportingConstructor] to import calling object into constructor parameter using MEF

I am in the process of converting some of my code to MEF from a proprietary system that sort of does the same thing as MEF, and I have a question about how I would accomplish the following problem ...
1
vote
2answers
648 views

Spring: Inject static member (System.in) via constructor

I wrote some sort of console client for a simple application. To be more flexible, I thought it would be nice to only depend on java.io.Input-/OutputStream, instead of accessing System.in/out ...
1
vote
6answers
236 views

Constructor Injection, design for testability

I have this code (you probably can ignore that it is Swing code), but I usually end up with too many arguments in my constructor. Should I use model bean class and then pass that object in the ...
0
votes
2answers
43 views

Serialization vs ctor injection and protecting invariants

I could be missing something obvious here... But as I learn to appreciate the glory of IoC and ctor injection I am having trouble reconciling this with object graph serialization. Are the two ...
0
votes
0answers
49 views

Why Should I Use Constructor Injection Over Property Injection [closed]

Possible Duplicate: Dependency injection through constructors or property setters? I'm beginning to feel that I should have all my controllers use property injection instead of constructor ...
0
votes
0answers
27 views

Unity framework newbie - how to perform construtor injection

Basically, my question boils down to, do I need to call the resolve method on the unity container from within my parameterless constructor? Or can I have a constructor like this: ISomething ...
0
votes
0answers
124 views

How to get a Castle Windsor factory facility created instance to still have constructor injection?

I am a bit new to factory facility, so please bear with me if what I am doing is daft. Heres my container registration: _container = new WindsorContainer(new XmlInterpreter()); ...
0
votes
1answer
352 views

Unity: Constructor injection with mutiple constructors

I'm trying to inject an EF ObjectContext using Unity constructor injection. My attemp is to register the type in the bootsprapper like this: protected override void ConfigureContainer() { ...
0
votes
2answers
286 views

Unity/Caliburn Micro, Injection Constructor with multiple parameters

I am currently trying to learn how to implement MVVM using Unity and Caliburn Micro. After looking around for help elsewhere I am still unsure about how to set up the Constructor Injection properly. I ...
0
votes
1answer
429 views

Constructor Injection and when to use a Service Locator

I'm struggling to understand parts of StructureMap's usage. In particular, in the documentation a statement is made regarding a common anti-pattern, the use of StructureMap as a Service Locator only ...
0
votes
1answer
366 views

Unity Application Block - Constructor injection in configuration file

How can I specify that constructor with no parameter should be used while creating the object? I know how to do it for the parameterized one but cannot find any help for the parameter less ...
0
votes
3answers
204 views

Testable Java Code: using model beans with a constructor

According to Misko Hevery that has a testability blog. Developers should avoid 'holder', 'context', and 'kitchen sink' objects (these take all sorts of other objects and are a grab bag of ...