Tagged Questions

10
votes
5answers
171 views

Dependency Injection best practices and anti-patterns

I'm relatively unskilled in Dependency Injection, and I'd like to learn some best practices and anti-patterns to use and avoid respectively when using DI.
0
votes
3answers
28 views

Authorization and Windsor

I'm trying to implement my custom authorize attribute like: public class MyCustomAuth : AuthorizeAttribute { private readonly IUserService _userService; public MyCustomA …
0
votes
3answers
53 views

Dependency Injection and Generic Collections

I'm going round in circles at the moment trying to get the pattern right for using Dependency Injection with a number of IEnumerables. I have three types of object that I want to …
1
vote
2answers
35 views

What is the best strategy for Dependency Injection of User Input?

I've used a fair amount of dependency injection, but I'd like to get input on how to handle information from the user at runtime. I have a class that connects to a com port. I all …
5
votes
4answers
127 views

Patterns for making c++ code easy to test

Should you design your code to make testing easier? And if so how to design c++ code so that it is easy to test. How do you apply dependency-injection in c++? Should I implement …
2
votes
1answer
51 views

Guice best practices and anti-patterns

I'm not sure if there is merit to this question or not, but are there any best practices and anti-patterns specific to Google Guice? Please direct any generic DI patterns to this …
1
vote
1answer
19 views

Which DI container will satisfy this

This is what I want from DI container: public class Class { public Class(IDependency dependency, string data) { } } var obj = di.Resolve<Class>(() => new Class(null, …
2
votes
1answer
59 views

Lifetime management with Google Guice

Is there a recommended pattern for shutting down / closing objects created with Guice? The lifecycle I'm aiming for is: Prepare a Guice Module Create an injector Use the injecto …
0
votes
2answers
36 views

Is this dependency injection in ActionScript 3?

Hi. I have a Main.fla (controlled by Main.as) that has a child named Slide (a Movieclip controlled by another class, Slide.as). Sometimes, my Slide object have to call the method …
3
votes
3answers
109 views

IoC Dependancy injection into Custom HTTP Module - how? (ASP.NET)

Hi, I have a custom HTTP Module. I would like to inject the logger using my IoC framework, so I can log errors in the module. However, of course I don't get a constructor, so ca …
4
votes
2answers
92 views

Dependency Injection Best Practises

I am using Dependency Injection in my code (with Ninject) and thought I was doing quite well until I came across a performance problem that was caused by a misunderstanding of wher …
0
votes
1answer
17 views

Grails: Dependency injection in regular groovy class

Let's say that I've got a BarService under grails-app/services and regular Groovy class 'Foo' like this under src/groovy. class Foo { def barService } Are there any way to tur …
0
votes
2answers
29 views

How to resolve types registered in other Modules in Prism?

I'm registering few modules in my Prism application using UnityBootstrapper protected override IModuleCatalog GetModuleCatalog() { var catalog = new ModuleCatalog(); catal …
0
votes
3answers
47 views

Are there things to watch out for when using a Dependency Injection Framework in asp.net?

Like threading issues? Bottlenecks? Memory problems?
1
vote
7answers
117 views

How do I use dependency injection with an ASP.NET MVC model?

I would like to inject a dependency into an ASP.NET MVC model, but I can't figure out where in the pipeline to do the injection. It's very straightforward with a ControllerFactory …

1 2 3 4 5 30 next
15 30 50 per page