125
votes
21answers
10k views
Why do I need an IoC container as opposed to straightforward DI code?
I've been using Dependency Injection (DI) for awhile, injecting either in a constructor, property, or method. I've never felt a need to use an IoC container. However, the more I read, the more …
0
votes
1answer
105 views
Can I inject a SessionBean into a JEE AroundInvoke-Interceptor?
I have an EAR with modules:
foo-api.jar
foo-impl.jar
interceptor.jar
In foo-api there is:
@Local
FooService // (interface of a local stateless session bean)
In foo-impl there is:
@Stateless
…
0
votes
5answers
82 views
.Net Refactoring application to use Dependency Injection
I am currently into the testing stage of a project I am working on and am having trouble bringing the main service under test in anything other than the most basic default test cases.
The Service is …
1
vote
1answer
358 views
Removing or overwriting a component from Windsor Container
I'm trying to accomplish a seemingly super simple thing: from my unit test I want to replace the type being resolved with a mock/fake object.
For example: the xml config states that a component of …
1
vote
3answers
83 views
Is this a sane implementation of constructor injection?
Following on from my question on service locators I have decided to use constructor injection instead. Please consider the following code:
<?php
interface IAppServiceRegistry {
…
0
votes
2answers
24 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 …
1
vote
2answers
53 views
Understanding Spring annotation DI
@Repository @Service @Controller
@Component
-->only use for spring managed bean (no need weaving)
-->@repository, @Service @controller is actually a @Component , just naming easier for …
0
votes
2answers
62 views
advantage of using applicationcontext.getbean vs @configurable
Hi,
what is the advantage of using @configurable compared to on bean that not managed by bean doing di by applicationcontext.getbean? any anyone list pro and cons?
0
votes
2answers
97 views
Structure Map configuration
Consider the following class
public class SchemaExecutor: ISchemaExecutor
{
public SchemaExecutor(SqlPlusSettings sqlPlusSettings)
{
_sqlPlusSettings = sqlPlusSettings;
}
...
…
6
votes
2answers
74 views
Mono compatible Dependency Injection Framework
Which Dependency Injection frameworks are compatible (and tested) against the Mono 2.4.2.3 runtime (Release Notes)?
0
votes
2answers
57 views
How to unit test instance creation?
I have a Carpenter class that does it's work using a Lathe and a Wood object.
class Carpenter
{
function Work()
{
$tool = new Lathe();
$material = new Wood();
$tool->Apply($material);
}
}
…
0
votes
1answer
43 views
spring dependency injection in any java bean
I have application that look like below
without spring (prior)
UI-> service --> javabean
p.s: my ui call service (not using DI) and i want to remain this way
new service()
I want my …
1
vote
2answers
46 views
ServiceLocator and the Open/Closed Principle
I'd like to:
Make commonly required services visible to all classes that need them,
with a minimum of boilerplate, and
without sacrificing testability!
It's a small project and I think DI might be …
1
vote
2answers
104 views
C# Dependency Injection Sample
I was wondering if it makes sense to have objects inherit from a class that implements the interface when dealing with dependency injections
example
public interface IPeople
{
string Name …
1
vote
1answer
68 views
Parameterized controller constructor never gets hit
With 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(() …
