Constructor Injection is the Dependency Injection technique of passing an object's dependencies to its constructor.
0
votes
1answer
51 views
Can Ninject use an anonymous delegate (func) as a ConstructorArgument?
I have a repository abstract class that encapsulates pretty much all of the CRUD functionality:
public abstract class DataRepository<T> : IRepository<T>
where T : class
{
public ...
5
votes
2answers
76 views
Unit testing constructor injection
Suppose that my Foo class has the following:
readonly IService service;
public Foo(IService service)
{
if (service == null)
throw new ArgumentNullException("service");
this.service ...
2
votes
0answers
109 views
Should CDI bean with interceptors have a default constructor?
I have a CDI bean, and a interceptor is added to one method of this bean.
If this bean doesn't have a default constructor(I use the Constructor Injection).
At runtime, I get the exception
...
2
votes
2answers
99 views
Java configuration in Spring framework
I have classes A, B and their implementation AImpl, BImpl.
interface A {
}
interface B {
}
interface C {
}
class AImpl{
@Inject
AImpl(B b){}
}
class BImpl{
@Inject
BImpl(String foo, ...
2
votes
1answer
92 views
Automatically lazily resolving components in Castle Windsor
It is possible to lazily resolve a component in Castle Windsor by registering LazyOfTComponentLoader in the container and resolving a Lazy<T> as specified here:
container.Register(
...
1
vote
2answers
344 views
Multi-tenancy web application with filtered dbContext
I am new to ASP.Net MVC and multi-tenancy web application. I have done lots of reading, but being a beginner I just follow what I understand. So I managed to built a sample scenario web application ...
1
vote
1answer
40 views
What is the correct way to fail in a WebApi Controller constructor
I have a WebApi Controller that requires a service via it's constructor. If this service is null I would usually throw a NullArguementException. Is this still the correct way to fail in the context of ...
3
votes
1answer
71 views
constructor injection / dependency injection - dealing with 'root' classes
I've been using a lot dependency injection, test-driven development, and unit-testing lately and am starting to love it.
I am using constructor dependency in classes, so that I can then inject mock ...
0
votes
1answer
36 views
Startup composition issue
I have a View:
internal partial class StartWindow : Window
{
public StartWindow()
{
InitializeComponent();
}
[ImportingConstructor]
public ...
1
vote
1answer
168 views
Argument passed is not favored over default implementation in Castle Windsor
I would like to prefer the parameter implementation over an implementation registered by default, but it does not work.
In fact, the documentation suggests that it should work
Demo of Incorrect ...
0
votes
1answer
92 views
Failure to pass generic arguments with Castle Windsor
There seems to be an issue with passing generic arguments when attempting to create a parametrized instance with Castle Windsor
Demo of Failure to Pass Generic Arguments
private static void ...
2
votes
3answers
113 views
Spring overloaded constructor injection
This is the code :
public class Triangle {
private String color;
private int height;
public Triangle(String color,int height){
this.color = color;
this.height = height;
}
public ...
1
vote
0answers
228 views
How can I inject parameter through constructor in Roboguice? [android]
This question is probably exact duplicate of this one
Pass parameter to constructor with Guice
Difference is that I use roboguice for android, not just Guice, so answers there does not work for me.
...
0
votes
3answers
188 views
Spring constructor dependency Injection Issues
I have 2 classes
public class Abcd{
private String username;
private String password;
public Abcd(@Value("${username}") String userName, @Value("${password}") String password) {
...
2
votes
1answer
962 views
Ninject WithConstructorArgument : No matching bindings are available, and the type is not self-bindable
My understanding of WithConstructorArgument is probably erroneous, because the following is not working:
I have a service, lets call it MyService, whose constructor is taking multiple objects, and a ...
3
votes
1answer
48 views
Constructor Injection Win8 App
How to implement DI and IoC in Win8 App?
In windows form if I needed a form with dependencies I passed in the constructor (Constructor Injection)
But with Page how do you?
If I build a page with this ...
0
votes
2answers
99 views
How can I specify a constructor for Unity to use when resolving a service?
I have the following constructors:
public ReferenceService(
IAzureTable<Reference> referenceRepository)
{
_referenceRepository = referenceRepository;
}
public ...
1
vote
2answers
428 views
Dynamically injecting constructor parameters using Unity
I'm using the Unity container for dependency injection in an ASP.NET MVC 4 application.
For a particular controller (say ProductController), I have an dependency injection scenario as follows:
The ...
2
votes
1answer
55 views
Dependency Injection passing on dependency to other concrete types
I'm sure this is not a big deal and the application is not big but I'm trying to practice DI anywhere I can, for experience. I have the following class and all it does is parse some arguments entered ...
0
votes
1answer
345 views
Spring .NET constructor injection of object created by other dependecy
Following problem:
I'm developing a WCF Service that uses RabbitMQ to connect to an API. We use spring as a DI container.
We made a consumer class (some custom logic for rabbit MQ + logging)
...
1
vote
2answers
106 views
Dynamic/context-sensitive constructor injection
I would like to inject the constructor parameter IActionLogger actionLogger, but want the other parameters largeBucket, smallBucket and amountToRetrieve are context-sensitive (not sure if that's the ...
0
votes
2answers
211 views
MVC: Invoking overloaded constructors conditionally
I have an MVC application where I am implementing CQRS where I have seperated saving data from reading data into seperate interfaces. I am using constructor injection for injecting the concrete ...
4
votes
1answer
740 views
Asp.net MVC base controller with constructor injection and MEF
I have a base controller class that exposes some logging functionality to it's child classes. This logging dependency is constructor injected. To provide some simplified code this is how it all looks ...
1
vote
2answers
451 views
Ninject Injection of all instances of a generic type with ninject
I would like to be able to use ninject to inject all instances of a particular generic type into a class. For example I have a bunch of custom extractors of a format similar to:
public interface ...
3
votes
1answer
244 views
Ninject: Passing client's assembly as constructor argument and specifying desired implementation from the client using attributes
I'm new to Ninject and Dependency Injection in general so please excuse my noobness here. =)
I have several implementations of an IConfig interface which scan an Assembly and its dependencies for ...
3
votes
1answer
407 views
RavenDB and Constructor Injection
In my project, I have the following PageCache entity, which is being stored in RavenDB:
public class PageCache
{
private readonly IHtmlDocumentHelper htmlDocumentHelper;
public string Id { ...
0
votes
1answer
144 views
Are there any advantages of Property Injection over Constructor Injection? [duplicate]
Possible Duplicate:
Dependency injection through constructors or property setters?
I'm curios if Property Injection has any advantages over Constructor Injection:
public class ...
0
votes
2answers
4k views
Constructor injection using Spring annotation @Autowired does not work
I have created 2 simple classes. Constructor of one class is annotated as @Autowired. It accepts the object of another class. But this code fails.
Classes :-
1) SimpleBean.java
@Configuration
public ...
0
votes
3answers
249 views
Where to put needed initialization code when using Dependency Injection?
When my constructors are pure arguments-to-propeties setters then I'm not sure where to put other code that a class needs to properly work.
For example in JavaScript I'm programming a ...
1
vote
1answer
632 views
Declaring ViewModel using Constructor Injection in XAML
I'm trying out Unity and I'm having problems declaring my viewmodel in XAML. Can you help me out?
XAML:
<UserControl.DataContext>
<search:SearchBoxViewModel />
...
3
votes
5answers
402 views
Design By Contract, writing test-friendly code, object construction and Dependency Injection putting all together best practices
I have been trying to figure out the best practices to write test-friendly code, but more specifically the practices related to object construction. In the blue book we discovered that we should ...
0
votes
3answers
82 views
How to handle this DI resolving scenario?
So, lets assume I can draw in paint:
Say I have a class A which depends on objects B and C to be instanced, but C also depends on an instance of B, and I want this instance of B to be the same that ...
1
vote
1answer
468 views
Specify run time parameter dependency in Unity
I have a class which needs a string as a parameter in its constructor but this parameter will be decided by the calling code. At the same point of time, the life time of this class has to be tied to ...
1
vote
1answer
529 views
Questions regarding Unity Configuration with singletons - ASP.NET MVC3
We've been using Unity for our ASP.NET MVC3 applications. The configuration is done solely in the web.config file. See example below, where we are using singleton. We are using constructor ...
1
vote
1answer
1k views
Constructor Injection with TinyIoC
I have just changed from Ninject to TinyIoC for dependency injection and I'm having trouble with constructor injection.
I have managed to simplify it down to this snippet:
public interface IBar { } ...
2
votes
0answers
626 views
UNITY: How to implement thread safe Container.Resolve() function with constructor injection?
I'm using Unity 2.0 in my project where I'm reading a lot of files at the same time inside Parallel.ForEach block of code:
Parallel.ForEach(files, currentFile =>
{
using(IMsBuildProjectLoader ...
5
votes
3answers
270 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 ...
1
vote
2answers
118 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 ...
2
votes
1answer
120 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 ...
3
votes
2answers
1k 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 ...
3
votes
1answer
612 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 ...
2
votes
0answers
263 views
Constructor injection of a View Model instance used as an Action method parameter
When a view model is created you can populate the options (e.g. used in a dropdown list) into a setter property of the view model.
The problem is that when that view model is later passed as a ...
3
votes
2answers
373 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 ...
1
vote
2answers
281 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:
...
2
votes
2answers
2k 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 ...
8
votes
5answers
247 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 ...
1
vote
1answer
92 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, ...
3
votes
2answers
2k 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:
...
1
vote
2answers
2k 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 ...
10
votes
1answer
432 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:
...



