0
votes
3answers
22 views
Accessing Spring bean *not* by dependency injection
We have some domain objects that are created at runtime - not by Spring. These domain objects need access to some service type beans that are being managed by Spring. How can the domain objects that …
2
votes
3answers
32 views
How to use spring to resolve dependencies of an object created manually?
Hi guys!
I would like to know if it's possible to use Spring to resolve the dependencies of an object created manually in my program. Take a look at the following class:
public class TestClass {
…
2
votes
3answers
48 views
How can I combine MVVM and Dependency Injection in a WPF app?
Can you please give an example of how you would use (your favorite) DI framework to wire MVVM View Models for a WPF app?
Will you create a strongly-connected hierarchy of View Models (like where …
1
vote
2answers
60 views
Is Dependency Injection Chaining an Anti-Pattern?
Here is the problem, lets say we are making a video game and want to use Dependency Injection. Here is what we have:
Game Class // This is just the code to keep track of the overall game logic
…
1
vote
3answers
92 views
How to programatically use Spring’s JdbcTemplate?
We use Spring's JdbcTemplate which is configured through Spring config as illustrated below. Is there a way to do this without injecting the data source? I'd like to just create the JdbcTemplate …
0
votes
1answer
38 views
Dependency injection into custom ViewPage generates wierd error
i'm trying to inject stuff into a custom ViewPage (ModelViewPage, from MvcContrib)
public class ValidatedModelViewPage<T> : ModelViewPage<T> where T : class
{
public …
1
vote
2answers
46 views
How to Inject Open Connections with an IoC
First, my scenario. I have a service, BillingService, has a constructor like this:
BillingService(IInstallmentService, IBillingRepository)
The InstallmentService has a constructor that looks like …
2
votes
0answers
29 views
Grails Integration with another Spring app - dataSource being overloaded.
Hi,
I'm currently in the process of building a CRUD tool for an existing Spring-based application.
The application is being included in the Grails app as a JAR library which seems to work fine.
To …
2
votes
2answers
72 views
Dependency injection: injecting user control in aspx page
I need to build a 'customizable' asp.net web application (not asp.net mvc).
I was thinking to use an IoC container to inject user control into aspx pages.
Has anybody ever tried that ?
In brief …
6
votes
3answers
86 views
IoC Containers and Domain Driven Design
I've been searching for guidance for using IoC containers in domain driven design. Evan's book unfortunately doesn't touch on the subject. The only substantial guidelines I could find on the internet …
0
votes
1answer
61 views
Castle Windsor: Problem with Multiple Constructors
Hello stackoverflow! Long-time reader first time writer here. I am currently undertaking a conversion from to the use of Ninject to the current release of Castle Windsor for a simple C# .NET …
120
votes
20answers
9k 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 …
2
votes
6answers
80 views
Dependency Inject Sql Connection?
Firstly, I'm starting to use StructureMap, but an example in any DI framework will do.
I have a class as so,
public class GeoData
{
public List<Country> GetCountries()
{
…
0
votes
2answers
51 views
array dependency injection in spring?
Hi,
is there a way to use dependency injection to inject all available implementations of a specific interface in spring?
This is kind of the same thing as asked here for .NET.
Though my aim is to …
1
vote
2answers
55 views
Where should I store a reference to my DI container?
I'm wondering how I should store/reference my dependency injection container(s). Is it alright to have a container be a static property on a static class? Or should I have the container be an instance …
