active questions tagged dependency-injection - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T12:16:53Zhttp://stackoverflow.com/feeds/tag/dependency-injectionhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1813992/accessing-spring-bean-not-by-dependency-injection0Accessing Spring bean *not* by dependency injectionMarcus Leon2009-11-28T22:40:06Z2009-11-29T08:26:10Z
<p>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 are created at runtime access Spring beans dynamically (not by DI)?</p>
http://stackoverflow.com/questions/1807463/integration-test-for-instantiation-of-a-type-via-di-container1Integration test for instantiation of a type via DI containerBen Aston2009-11-27T08:40:50Z2009-11-28T13:37:32Z
<p>I am running TDD on an ASP.NET MVC web app.</p>
<p>Is it standard practice to create integration tests to demonstrate the correct instantiation of a type via the DI container (in my case Castle Windsor)?</p>
<p>If so, would you mock out the container, or simply use it as is?</p>
<p>Or... is this simply not done for some reason?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1811388/comparison-between-unity-and-moq-dependency-injection-frameworks0Comparison between Unity and Moq Dependency Injection FrameworksSystem.Exception2009-11-28T02:48:14Z2009-11-28T06:10:56Z
<p>Faced with choosing a Dependency Injection Framework in a historically MS shop working with C#, I'm interested in finding out the differences between Moq and Unity.</p>
<p>Some of the main concerns would include:</p>
<ul>
<li>Ease of use for developers with no background in DI</li>
<li>Feature comparison between the two (once everyone becomes familiar with the
technology). </li>
<li>Performance (not sure if this is even an issue)</li>
<li>Integration with visual studio, particularly with regards to refactor tools</li>
<li>Readability / maintainability</li>
<li>Experience when used with other tools such as MEF or EF</li>
</ul>
<p>Has anyone had any experience in comparing these two?
Does anyone have any reasons for choosing one or the other?
Are there any others that I should really be considering as well?</p>
http://stackoverflow.com/questions/1805021/how-to-use-spring-to-resolve-dependencies-of-an-object-created-manually2How to use spring to resolve dependencies of an object created manually?Alexandre2009-11-26T18:09:05Z2009-11-27T09:39:25Z
<p>Hi guys!</p>
<p>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:</p>
<pre><code>public class TestClass {
private MyDependency md;
public TestClass() {
}
...
public void methodThaUsesMyDependency() {
...
md.someMethod();
...
}
}
</code></pre>
<p>This TestClass is not a spring bean, but needs MyDependency, that is a spring bean. Is there some way I can inject this dependency through Spring, even if I instantiate TestClass with a new operator inside my code?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/427659/going-bananas-with-loose-coupling-and-dependency-injection7Going bananas with loose coupling and dependency injection. krosenvold2009-01-09T10:45:32Z2009-11-27T06:59:54Z
<p>With the latest additions to our dependency injection framework (annotations in spring), the marginal cost of creating DI-managed components seems to have hit some critical new threshold. While there previously was an overhead associated with spring (tons of XML and additional indirections), dependency injection seems to have started going where lots of patterns go; they go under the hood and "disappear".</p>
<p>The consequence of this is that the conceptual overhead associated with a <a href="http://www4.java.no/web/show.do?page=205" rel="nofollow"><em>large number</em></a> of components becomes acceptable. It's arguable that we could make a system where most classes only expose
one single public method and build the whole system by just aggregating these pieces like crazy. In our case a few things are given; the user interface of your application has some functional requirements that shape the topmost services. And the back-end systems control the lower part. But in between these two, everything is up for grabs.</p>
<p>Our constant discussion is really <em>why are we grouping things in classes</em> and <em>what should the principles be</em> ? A couple of things are certain; the facade pattern is dead and buried. Any service containing multiple unrelated features also tend to get split up. "Unrelated feature" is interpreted in an extremely much stricter sense than I have ever done earlier. </p>
<p>In our team there are two prevailing trains of thought here: Implementation dependencies restrict grouping; any functionality in a single class should preferably be a client of <em>all</em> injected dependencies. We are a DDD project and the other fraction thinks the domain restricts grouping (CustomerService or finer grained CustomerProductService, CustomerOrderService) - normalized usage of injected dependencies is unimportant.</p>
<p>So in the loosely coupled DI universe, why are we grouping logic in classes ? </p>
<p>edit: duffymo point out that this may be moving towards a functional style of programming; which brings up the issue of state. We have quite a few "State" objects that represent (small) pieces of relevant application state. We inject these into any service that has a legitimate need for this state. (The reason we use "State" objects instead of regular domain objects is that spring construct these at an unspecified time. I see this as a slight workaround or alternate solution to letting spring manage the actual creation of domain objects. There may be better solutions here).</p>
<p>So for instance any service that needs OrderSystemAccessControlState can just inject this, and the scope of this data is not readily known to the consumer. Some of the security-relate state is typically used at a lot of different levels but totally invisible on the levels in-between. I really think this violates fundamentally with functional principles. I even had a hard time adjusting to this concept form an OO perspective - but as long as the injected state is precise and strongly type then the <em>need</em> is legit aka the use case is proper.</p>
http://stackoverflow.com/questions/1802419/how-can-i-combine-mvvm-and-dependency-injection-in-a-wpf-app2How can I combine MVVM and Dependency Injection in a WPF app?Yacoder2009-11-26T08:59:25Z2009-11-26T09:47:43Z
<p>Can you please give an example of how you would use (your favorite) DI framework to wire MVVM View Models for a WPF app?</p>
<p>Will you create a strongly-connected hierarchy of View Models (like where every nested control's ViewModel is a property on a parent's ViewModel and you bind it to nested control's DataContext in XAML) or you would use some kind of even-more-abstract ""View Model" Manager", which maintains some weakly-connected hierarchy... like in CAB, maybe?</p>
http://stackoverflow.com/questions/1060483/dependency-injection-in-c0Dependency Injection in C++frast2009-06-29T20:53:19Z2009-11-26T08:14:50Z
<p>How do I implement dependancy injection in C++ explicitly without using frameworks or reflection?</p>
<p>I could use a factory to return a auto_ptr or a shared_ptr. Is this a good way to do it?</p>
http://stackoverflow.com/questions/1005473/must-dependency-injection-come-at-the-expense-of-encapsulation11Must Dependency Injection come at the expense of Encapsulation?urig2009-06-17T06:58:01Z2009-11-26T00:11:00Z
<p>If I understand correctly, the typical mechanism for Dependency Injection is to inject either through a class' constructor or through a public property (member) of the class. </p>
<p>This exposes the dependency being injected and violates the OOP principle of encapsulation.</p>
<p>Am I correct in identifying this tradeoff? How do you deal with this issue? </p>
<p><em>Please also see my answer to my own question below.</em></p>
http://stackoverflow.com/questions/1795077/is-dependency-injection-chaining-an-anti-pattern1Is Dependency Injection Chaining an Anti-Pattern?John Baker2009-11-25T06:46:16Z2009-11-25T08:52:37Z
<p>Here is the problem, lets say we are making a video game and want to use Dependency Injection. Here is what we have:</p>
<pre><code>Game Class // This is just the code to keep track of the overall game logic
Character Class // This would be the guys in the game, good and bad guys both
Weapon Class // The weapons for the characters
</code></pre>
<p>So normally when I do Dependency Injection I would inject the current location on the maps, and game state into the character so my character would have the info to know where to create itself, etc. Then I have the character create the weapon and inject the values as to the strength of the weapons, as well as some other general game state from the Game Class etc.</p>
<p>This almost seems like an anti-pattern to me. I say that because now you have (at least it seems so to me) code that is very brittle and hard to change. If we want to change the game state information that is passed we are forced to change all three classes. We make the original change to the Game class, then modify Character and then finally modify the Weapon class as well. That is a lot of work especially if you are going 5 levels deep rather than just the 3 here. Though yes it would allow for easier Unit Tests than no DI.</p>
<p>This again sounds like bad practice. Is this the way things are typically done? What is we sort of had a 'MotherShip' pattern where everything is at the top level. So instead of game creates character creates weapon we let game (or some other class) create all of them.</p>
<p>This way if we wanted to add a new weapon to a character the game class could just create the weapon itself and inject it. Not sure what to do on this one. Thanks</p>
http://stackoverflow.com/questions/1522527/castle-windsor-or-other-di-creating-object-based-on-parameter1Castle Windsor (or other DI) - creating object based on parameterMaximilian Csuk2009-10-05T21:32:57Z2009-11-25T07:00:03Z
<p>Hi there!</p>
<p>I am pretty new to the whole DI/IoC thing, so bear with me...</p>
<p>I have this kind of setting:</p>
<pre><code>interface IA
interface IB
interface IC
abstract class A : IA
class B : A, IB
class C : A, IC
interface IX
interface IY
interface IZ
abstract class X : IX
class Y : X, IY
class Z : X, IZ
</code></pre>
<p>B and C's constructors look like this:</p>
<pre><code>public B(IY y);
public C(IZ z);
</code></pre>
<p>Now I want either B or C to be constructed, based on an already created instance of either Y or Z.
Like this:</p>
<pre><code>IX x = new ...; // either Y or Z, determined at runtime
// lots of code
IA a = fancyfuncoftruth<IA>(x); // creates an instance of either B or C, depending on x
</code></pre>
<p>Is something like this possible?</p>
<p>To give you a bit of background: I am trying to combine WPF's treeview, the MVVM pattern and DI.</p>
<p>Thanks for your time.</p>
http://stackoverflow.com/questions/359122/dependency-injection-alternatives11dependency injection alternativesTT2008-12-11T12:06:32Z2009-11-24T21:18:32Z
<p>I am looking at depency injection, I can see the benefits but I am having problems with the syntax it creates. I have this example</p>
<pre><code>public class BusinessProducts
{
IDataContext _dx;
BusinessProducts(IDataContext dx)
{
_dx = dx;
}
public List<Product> GetProducts()
{
return dx.GetProducts();
}
}
</code></pre>
<p>The problem is that I don't want to write </p>
<pre><code>BusinessProducts bp = new BusinessProducts(dataContextImplementation);
</code></pre>
<p>I would continue to write </p>
<pre><code>BusinessProducts bp = new BusinessProducts();
</code></pre>
<p>because I feel the first alternative just feels unatural. I dont want to know what the BusinessProduct "depends" on to get the products, also I feel it makes my code more unreadable. </p>
<p>Is there any alternatives to this approach as I would like to keep my original syntax for creating objects but I would like to still be able to fake the dependencies when unit testing or is it this dependecy injection frameworks can do for me?</p>
<p>I am coding in c# but alternatives from other languages is welcome</p>
http://stackoverflow.com/questions/1548214/dependency-injection-in-nerddinner-actually-testing-your-repository-or-model5Dependency injection in NerdDinner - actually testing your repository or modelpcampbell2009-10-10T15:23:41Z2009-11-24T15:55:01Z
<p>Consider a beginner dealing with Dependency Injection. We're analyzing two relevant classes in NerdDinner.</p>
<p><strong>DinnerRepository</strong> from the application:
<img src="http://imgur.com/Lv0Uz.png" alt="Repo image"></p>
<p><strong>FakeDinnerRepository</strong> from the tests:
<img src="http://imgur.com/TVLV9.png" alt="Fakes image"></p>
<p>They implement different logic, which of course is necessary, as the key idea here is to implement the <code>IDinnerRepository</code>, and provide different implementations and private members.</p>
<p>I understand the test is for the controller, but I am concerned that there are two different implementations of the data access logic. Consider any project that uses any kind of ORM, ADO.NET, SubSonic, or whatever flavour of data access you like. Yes, you can setup your fake repository to match the real repo. </p>
<p>My worry is that over time, implementation details in the real repo change. Perhaps a typo slips in, or some other important implementation detail changes in the <em>query</em>. This leads to a potential mismatch of the logic in the Model between the fake and the real repo. The worry is that the implementation of the real repo and test repo get out of sync.</p>
<p><strong>Questions:</strong></p>
<ul>
<li>How would you test the Model in this case?</li>
<li>Is it appropriate to test the model?</li>
<li>Is it a matter of discipline to ensure your test keep up with the implementation of the business logic?</li>
</ul>
http://stackoverflow.com/questions/1046186/constructor-injection-working-property-injection-not-so-much1Constructor injection working... Property injection not so muchJoelFan2009-06-25T20:47:50Z2009-11-24T14:17:10Z
<p>I am using Composite Application Block. I have a class that uses constructor injection (using the [ServiceDependency] attribute on the constructor parameter) and it's working. But when I try to switch to using property injection (with the [ServiceDependency] attribute on the property), the injection is not happening (the property stays null).</p>
<p>I made sure that the property has the same type that the old constructor parameter had, and it's public.</p>
<p><strong>Edit:</strong>
This is C# / .NET</p>
http://stackoverflow.com/questions/812599/is-there-a-dependency-injection-framework-for-delphi-or-free-pascal4Is there a Dependency Injection Framework for Delphi or Free Pascal?mjustin2009-05-01T18:29:28Z2009-11-23T21:35:08Z
<p>For some of my Delphi / Free Pascal projects I consider using Dependency Injection.
Are there already implementations available (or in development) which provide some basic DI (IoC) functionality?</p>
<p>Edit: I am not looking for a .NET based solution for Delphi.Net or Prism - in this case, the question would have been: which one should I pick :)</p>
http://stackoverflow.com/questions/1782540/grails-integration-with-another-spring-app-datasource-being-overloaded2Grails Integration with another Spring app - dataSource being overloaded.James Camfield2009-11-23T11:23:07Z2009-11-23T14:36:18Z
<p>Hi,</p>
<p>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.</p>
<p>To make use of the library's own spring context, I used to load it through:</p>
<pre><code>def ctx = new ClassPathXmlApplicationContext( 'classpath:/applicationContextName.xml')
</code></pre>
<p>in my service. Unfortunately the context builds its own datasource (the library's default) which is no good, as I need to use the dataSource defined in Grails.</p>
<p>So, my solution was to just include the library's spring configuration with the Grails context by adding an import to the grails-app\conf\spring\resources.xml file.</p>
<p>This seems to work (in so much as all beans are loaded into the same context and I can now autowire the beans straight in to my service classes by using <code>def variableName</code>.</p>
<p>Unfortunately, the dataSource defined in the library's spring config is overloading the dataSource defined in my Grails DataSource.groovy file!</p>
<p>Is there any way I can tell Grails to load the libary's spring configuration first, so that it then gets overridden by the rest of Grails config (and thus using Grails' DataSource)?</p>
<p>Thanks for your help,</p>
<p>James</p>
<p>...</p>
<p>As a tenporary measure, I've removed the dataSource entry in the dependancy's spring config file and its beans have been injected the dataSource created by the Grails config - this isn't ideal though, as I've had to make a 'special' build of the dependancy jar.</p>
http://stackoverflow.com/questions/1214470/subsonic-simplerepository-and-dependancy-injection1SubSonic SimpleRepository and Dependancy InjectionRob Sutherland2009-07-31T19:37:43Z2009-11-23T12:00:07Z
<p>On a bit of a learning curve. Know one of you gurus can help me out. </p>
<p>I'm looking into SubSonic (SimpleRepository) and StructureMap. Really trying to get my head around them both. </p>
<p>I want to use SimpleRepository for the ease of use and letting my models define the database rather than pull off of or create a DB structure initially.</p>
<p>I create a concrete class that inherits from SimpleRepository</p>
<pre><code>public class DataRepository : SimpleRepository
{
public DataRepository() :
base("Application", SimpleRepositoryOptions.RunMigrations)
{ }
}
</code></pre>
<p>Add this to my Application Initialization</p>
<pre><code>ObjectFactory.Initialize(
x => x.ForRequestedType<DataRepository>()
.TheDefaultIsConcreteType<DataRepository>()
.CacheBy(InstanceScope.Hybrid));
</code></pre>
<p>And now I'm sure that everywhere in the app i use the same SimpleRepository.</p>
<p>Am I making this too complex? Or am I on the right track here. I know that you don't know all the other particulars so speak to me in generalities too. Thanks.</p>
http://stackoverflow.com/questions/1779200/how-to-programatically-use-springs-jdbctemplate1How to programatically use Spring's JdbcTemplate?Marcus Leon2009-11-22T16:35:49Z2009-11-22T23:40:01Z
<p>We use Spring's <code>JdbcTemplate</code> 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 <code>JdbcTemplate</code> instance programatically and "initalize" the datasource using <code>TheOracleDS</code>.</p>
<p>Our current config: </p>
<p><em>Java class</em></p>
<pre><code>private JdbcTemplate jdbcTemplate;
@Resource(name = "myDataSource")
public void setDataSource(DataSource dataSource) {
this.jdbcTemplate = new JdbcTemplate(dataSource);
}
</code></pre>
<p><em>Spring config</em></p>
<pre><code><jee:jndi-lookup id="myDataSource" jndi-name="java:/TheOracleDS"/>
</code></pre>
<p><em>Oracle datasource config</em></p>
<pre><code><xa-datasource>
<jndi-name>TheOracleDS</jndi-name>
...
</xa-datasource>
</code></pre>
<p><hr></p>
<p><strong>Update</strong>: Reason I'm asking this is I'm not a total believer in dependency injection / having Spring manage beans..</p>
http://stackoverflow.com/questions/1355171/what-design-pattern-to-locate-my-iunitofwork0What design pattern to locate my IUnitOfWork?McKAMEY2009-08-30T23:07:45Z2009-11-21T22:25:51Z
<p>I've implemented a repository pattern with persistence ignorance. The repository implementation only interacts with my entity objects, <code>IUnitOfWork</code> and <code>ITable<T></code> interfaces. The intention is that the <code>IUnitOfWork</code> isn't reused but represents a single transaction. So far, I've implemented in-memory as well as Linq-to-Sql versions of the <code>IUnitOfWork</code> and <code>ITable<T></code>.</p>
<p>My problem is that due to the <code>IUnitOfWork</code> injection into the repository, I end up with needing to know how to instantiate a new <code>IUnitOfWork</code> where ever the repository is used. Since this is the primary piece that is supposed to be pluggable it feels like I've done something wrong. The general usage pattern is something like this:</p>
<pre><code>FooUnitOfWork unitOfWork = new FooUnitOfWork();
Repository repos = new Repository(unitOfWork);
// ...act upon repos
unitOfWork.Save();
</code></pre>
<p>Now it appears that I need some other pattern to allow every repository usage in the app to obtain the correct unit of work (e.g. in-memory, L2S, etc.).</p>
<p><strong>What is the most fitting pattern for this?</strong> I've looked at <a href="http://martinfowler.com/articles/injection.html#InversionOfControl" rel="nofollow">Fowler's discussion on the topic</a> but none of his examples seem to be a clean fit. I already feel like the amount of abstraction that I have is more than I'd like so building yet another indirection seems excessive.</p>
<p>At the moment, I'm leaning toward some sort of app-wide provider which can be configured to produce the correct <code>IUnitOfWork</code>. Am I off-base or is this what is needed to truly be implementation agnostic?</p>
http://stackoverflow.com/questions/1769442/dependency-injection-into-custom-viewpage-generates-wierd-error0Dependency injection into custom ViewPage generates wierd errorCarl Hörberg2009-11-20T09:49:11Z2009-11-21T18:01:41Z
<p>i'm trying to inject stuff into a custom ViewPage (ModelViewPage, from MvcContrib)</p>
<pre><code>public class ValidatedModelViewPage<T> : ModelViewPage<T> where T : class
{
public ValidatedModelViewPage(IEnumerable<IBehavior<IMemberElement>> elementBehaviors)
: base(elementBehaviors.ToArray()) { }
}
</code></pre>
<p>and my Autofac registrations look like this:</p>
<pre><code> builder.RegisterCollection<IBehavior<IMemberElement>>().As<IEnumerable<IBehavior<IMemberElement>>>();
builder.Register<NotNullBehavior>().MemberOf<IEnumerable<IBehavior<IMemberElement>>>();
builder.Register<StringLenghBehavior>().MemberOf<IEnumerable<IBehavior<IMemberElement>>>();
builder.RegisterGeneric(typeof(ValidatedModelViewPage<>));
</code></pre>
<p>but i get this error when i try to access a view: </p>
<pre><code>Compiler Error Message: CS1729: 'UKFS.Web.Views.ValidatedModelViewPage<UKFS.Data.Entities.Skadeanmälan>' does not contain a constructor that takes '0' arguments
Source Error:
Line 194: private static object @__fileDependencies;
Line 195:
Line 196: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 197: public views_skadeanmälan_edit_aspx() {
Line 198: string[] dependencies;
Source File: c:\Users\Carl\AppData\Local\Temp\Temporary ASP.NET Files\root\be9ddc15\a84d5058\App_Web_edit.aspx.b2d4184a.thgwih90.0.cs Line: 196
</code></pre>
<p>i were clueless, but then i looked at App_Web_edit.aspx.b2d4184a.thgwih90.0.cs and found this: </p>
<pre><code>Line 190: public class views_skadeanmälan_edit_aspx : UKFS.Web.Views.ValidatedModelViewPage<Skadeanmälan>, System.Web.SessionState.IRequiresSessionState, System.Web.IHttpHandler {
Line 191:
Line 192: private static bool @__initialized;
Line 193:
Line 194: private static object @__fileDependencies;
Line 195:
Line 196: [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 197: public views_skadeanmälan_edit_aspx() {
</code></pre>
<p>of course, the generated class views_skadeanmälan_edit_aspx inheritates from my UKFS.Web.Views.ValidatedModelViewPage, and when it tries to instance it with the default construct.. so can you solve it? </p>
http://stackoverflow.com/questions/1007325/unity-dependency-injection-and-inheritance0Unity [dependency] injection and InheritanceAmi2009-06-17T14:15:30Z2009-11-21T06:42:18Z
<p>Hi,</p>
<p>My question is as follows:
I have a base controller (ASP.Net MVC controller) called ApplicationController, and I want all my controller to inherit from it. this base controller has a ILogger property, marked with a [Dependency] attribute. (yes, I know I should use constructor injection, I'm just curious about this attribute).</p>
<p>I created the container, registered types, changed the default factory, everything is fine. the problem is that when I try to use my Logger property in the derived controller, it's not resolved.</p>
<p>what am I doing wrong? why doesn't the container resolves the base class dependencies when creating the derived controller?</p>
<p>code samples:</p>
<p><hr /></p>
<p>ApplicationController:</p>
<pre><code>public class ApplicationController : Controller
{
[Dependency]
protected ILogger _logger { get; set; }
}
</code></pre>
<p>derived controller:</p>
<pre><code>public class HomeController : ApplicationController
{
public HomeController()
{
}
public ActionResult Index()
{
_logger.Log("Home controller constructor started.");
ViewData["Message"] = "Welcome to ASP.NET MVC!";
return View();
}
public ActionResult About()
{
return View();
}
}
</code></pre>
<p>Unity controller factory:</p>
<pre><code>public class UnityControllerFactory : DefaultControllerFactory
{
private readonly IUnityContainer _container;
public UnityControllerFactory(IUnityContainer container)
{
_container = container;
}
protected override IController GetControllerInstance(Type controllerType)
{
return _container.Resolve(controllerType) as IController;
}
}
</code></pre>
<p>Global.asax.cs sample:</p>
<pre><code>protected void Application_Start()
{
_container = new UnityContainer();
_container.RegisterType<ILogger, Logger.Logger>();
UnityControllerFactory factory = new UnityControllerFactory(_container);
ControllerBuilder.Current.SetControllerFactory(factory);
RegisterRoutes(RouteTable.Routes);
}
</code></pre>
<p><hr /></p>
<p>I'm quite new to Unity, so maybe I did something wrong.</p>
<p>thanks,
Ami.</p>
http://stackoverflow.com/questions/1710005/abstractions-should-not-depend-upon-details-details-should-depend-upon-abstracti3Abstractions should not depend upon details. Details should depend upon abstractions ?Sandbox2009-11-10T18:09:18Z2009-11-20T21:22:13Z
<p>In past couple of days, I have read about quite a lot about dependency injection/inversion of control/inversion of dependency. I <strong>think</strong> that, now my understanding of the concept is much better. But I still don't get the following from wikipedia:</p>
<blockquote>
<p>A. High-level modules should not
depend on low-level modules. Both
should depend on abstractions.
B. Abstractions should not depend upon details. Details should
depend upon abstractions.</p>
</blockquote>
<p>I understand the part of <em>High-level modules should not
depend on low-level modules.</em> But, I am confused about abstractions and details.Can someone please simplify them for me. Thanks.</p>
http://stackoverflow.com/questions/1771443/how-to-inject-open-connections-with-an-ioc1How to Inject Open Connections with an IoCCorey Coogan2009-11-20T16:00:06Z2009-11-20T16:41:14Z
<p>First, my scenario. I have a service, BillingService, has a constructor like this:</p>
<p>BillingService(IInstallmentService, IBillingRepository)</p>
<p>The InstallmentService has a constructor that looks like this</p>
<p>InstallmentService(IBillingRepository, IInstallmentCalculator)</p>
<p>My Billing service is an application service and the methods will coordinate the operation between the moving pieces. Everything is registered in my IoC container so that my facade only has to resolve an IBillingService and call the operation.</p>
<p>My BillingService and installment service both need to access the BillingRepository. I should only have to open one DB connection, so ideally the BillingRepository would take an IDbCOnnection in the constructor.</p>
<p>My question is, how do I get an open connection passed into my BillingRepository from my container and then effectively close it after my BillingService is done with it? I'm stuck with Unity at this client. If I were writing this by hand, it would looke like this:</p>
<pre><code>using(IDbConnection conn = DbFactory.GetConnection())
{
IBillingRepository repo = new BillingRepository(conn);
IInstallmentCalculator calc = new InstallmentCalculator();
IInstallmentService installmentService = new InstallmentService(repo,calc);
IBillingService billService = new BillingService(installmentService, repo);
billService.DoSomething(parameters);
}
</code></pre>
http://stackoverflow.com/questions/1768675/dependency-injection-injecting-user-control-in-aspx-page2Dependency injection: injecting user control in aspx pageThierry2009-11-20T06:21:30Z2009-11-20T10:27:12Z
<p>I need to build a 'customizable' asp.net web application (not asp.net mvc).</p>
<p>I was thinking to use an IoC container to inject user control into aspx pages.</p>
<p>Has anybody ever tried that ?</p>
<p>In brief here is how I think this can be achieved:</p>
<ul>
<li><p>I use Scott Guthrie's method to build a reusable 'user control library' (see his article "Creating and Using User Control Libraries").</p></li>
<li><p>Controls and pages in that library should have places to receive user controls dynamically (e.g., in an asp PlaceHolder).</p></li>
<li><p>In my custom web application, built on top of that library, I create specific user controls.</p></li>
<li><p>I put them in some way in a IoC container so that they can be injected in the controls/pages of the 'user control library' (e.g., in the PlaceHolders).</p></li>
</ul>
<p>That's it.</p>
<p>This is basically what can be done with Spring.Net as discussed here <a href="http://blogger.forgottenskies.com/?p=70" rel="nofollow">http://blogger.forgottenskies.com/?p=70</a> but to inject user controls. </p>
<p>Has anybody some experience on such stuff ? Or does it sound silly ? Alternatives ?</p>
<p>The idea is to have the possibility to build different web applications on top of my 'user control library' without touching that library. </p>
<p>For instance: in my library I have a page with 4 text boxes and for one specific application I need to add one text box, without changing the code of the page. The idea is to put a place holder in that page and inject dynamically my custom text box in this place holder. </p>
http://stackoverflow.com/questions/1265114/dependency-browser-that-runs-against-an-inversion-of-control-framework3dependency browser that runs against an inversion of control frameworkFrank Schwieterman2009-08-12T09:17:20Z2009-11-19T19:36:15Z
<p>Do any inversion of control / dependency injection framworks support viewing the object dependencies that have been registered? This is not to execute the code, but to better understand it. It seems that a graph based on the information it has (class A depends on B and C, class B dependencs on C and E, etc) would really document a system well.</p>
<p>I'm using Castle Windsor at the moment, but wouldn't mind trying a different framework for this functionality.</p>
http://stackoverflow.com/questions/640236/testing-dependency-injection-configuration0Testing Dependency Injection ConfigurationMikeHoyle2009-03-12T19:59:44Z2009-11-19T06:00:03Z
<p>I'm using Unity for dependency Injection. This seems to help when I'm testing my objects because I can mock out all dependencies. However, how am I supposed to test that my configuration is valid?</p>
<p>For example, I change the Unity configuration in the app.config, and of course, the project will build fine. My tests are currently only testing my objects, so they still work. But how can I be sure that the configuration isn't broken?</p>
http://stackoverflow.com/questions/1752228/ioc-containers-and-domain-driven-design6IoC Containers and Domain Driven DesignKenneth Cochran2009-11-17T22:12:05Z2009-11-18T20:35:38Z
<p>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 is <a href="http://blog.vuscode.com/malovicn/archive/2009/10/16/inversion-of-control-single-responsibility-principle-and-nikola-s-laws-of-dependency-injection.aspx" rel="nofollow">here</a>.</p>
<p>Many of Malovic's points are common sense but I'm concerned about a few of them. He suggests that IoC container's should be reserved for resolving services only and that using an IoC container to resolve domain dependencies is a bad idea. However, he doesn't back up this assertion with any examples. He simple states it as a matter of fact.</p>
<p>He then goes on to say that mixing IoC containers and factories doesn't make sense. This appears to contradict his first point. If, in fact, domain dependencies shouldn't be resolved by an IoC container how then should they be resolved? Evan's book clearly points to factories as the logical choice.</p>
<p>I would appreciate any input you have on the matter. I'm a novice when it comes to both DDD and IoC. I'm struggling to grasp how IoC and DDD can work together.</p>
http://stackoverflow.com/questions/1750873/using-the-ninject-kernel-as-a-unit-of-work-object-factory-1Using the Ninject kernel as a Unit of Work object factory.Jason Punyon2009-11-17T18:36:31Z2009-11-17T21:07:18Z
<p>So I'm starting to use Ninject for dependency injection and I'm wondering what people think of using a kernel as an object factory for Unit of Work type objects like Linq2Sql Datacontexts. I would just inject them like normal dependencies, but this introduces some object lifetime issues I'd like to avoid. DataContexts are different than general dependencies because you're supposed to spin up new instances as needed and dispose of them when you're done.</p>
<p>To do something like this I'd simply setup a provider like so...</p>
<pre><code>class SomeDataContextProvider : Provider<SomeDataContext>
{
private static string _connectionString = "someConnectionString"
protected override SomeDataContext CreateInstance(IContext context)
{
return new SomeDataContext(_connectionString);
}
}
</code></pre>
<p>Bind them in a module...</p>
<pre><code>class MyModule : Ninject.Modules.NinjectModule
{
public override void Load()
{
Bind<SomeDataContext>().ToProvider(SomeDataContextProvider);
}
}
</code></pre>
<p>And use the standard kernel when needed...</p>
<pre><code>class MyClassThatNeedsADataContext
{
private StandardKernel _kernel = new StandardKernel(new MyModule());
public void SomeMethod()
{
using (var db = _kernel.Get<SomeDataContext>())
{
//Use the context
}
}
}
</code></pre>
<p>It seems a little heavy for what is essentially a static factory but I'm using Ninject for other stuff anyway. I like that it gives members on the team a convention for factories instead of just letting them wing it (creating a bunch of different factory classes in weird places, or just putting static methods on the objects etc).</p>
<p>Thoughts? Is there a better way to deal with Unit of work dependencies like DataContexts or WCF Service Clients using dependency injection?</p>
http://stackoverflow.com/questions/1702324/creating-an-antiforgerytoken-through-dependency-injection2Creating an AntiForgeryToken through Dependency InjectionChris Marisic2009-11-09T16:56:10Z2009-11-17T14:46:31Z
<p>I'm working on improving the security of my company's website and wanted to create a token to prevent forgery attempts that could be easily maintained this is what I came up with.</p>
<pre><code>public class AntiForgeryToken
{
private readonly string _referenceToken;
public AntiForgeryToken()
{
_referenceToken = Guid.NewGuid().ToString();
}
public string ReferenceToken
{
get { return _referenceToken; }
}
}
</code></pre>
<p>In my base class for my MasterPage I have a HiddenField wrapped with property named: <code>ReferenceToken</code></p>
<pre><code>protected virtual void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
InjectToken();
}
ValidateToken();
}
private void InjectToken()
{
var token = ObjectFactory.GetInstance<AntiForgeryToken>();
ReferenceToken = token.ReferenceToken;
}
private void ValidateToken()
{
var token = ObjectFactory.GetInstance<AntiForgeryToken>();
if (ReferenceToken.Equals(token.ReferenceToken, SC.InvariantCultureIgnoreCase))
return;
...do stuff for failed token
}
</code></pre>
<p>I have StructureMap handle storing the token inside the Session so it's persisted per user session, would all of this be a valid implementation of an AntiForgery scheme?</p>
<p><strong>Edit:</strong> There seems to be some confusion on my question, yes I understand ASP.NET MVC has a built in AntiForgeryToken scheme, this question is explicitly about how to recreate this for <strong>WebForms</strong> to prevent the usage of a CSRF attack (Cross Site Request Forgery). I understand this in no means removes the need for proper authorization of user rights.</p>
<p>I was going to bring up the very link that @Neal and @solairaja posted: <a href="http://blog.codeville.net/2008/09/01/prevent-cross-site-request-forgery-csrf-using-aspnet-mvcs-antiforgerytoken-helper/" rel="nofollow">Prevent Cross-Site Request Forgery (CSRF) using ASP.NET MVC’s AntiForgeryToken() helper</a>. This article explains more of what the CSRF attack is and how MVC stops it however their solution isn't applicable to webforms which is why I went about implementing my own.</p>
<p>After seeing the response from @Neal I think that will most likely be the accepted answer since I didn't realize I could just get the actual source code from the MVC tool which will most likely replace the guid creation. But I'll leave the question open incase anyone else has some valuable information to add.</p>
http://stackoverflow.com/questions/1747583/array-dependency-injection-in-spring0array dependency injection in spring?subes2009-11-17T09:25:43Z2009-11-17T11:16:45Z
<p>Hi,</p>
<p>is there a way to use dependency injection to inject all available implementations of a specific interface in spring?</p>
<p>This is kind of the same thing <a href="http://stackoverflow.com/questions/1473665/castle-windsor-dependency-injection-with-multiple-concrete-implementations">as asked here for .NET</a>.</p>
<p>Though my aim is to use @Autowired for this:</p>
<pre><code>public class Foo{
@Autowired
private IDataCollector[] collectors;
}
</code></pre>
<p>Is this supported, would this require hacking or should I preferably use another component where all implementations of IDataCollector register themselve and use that accessor component with autowired instead of the array injection?</p>
<p>A reason I can think of why this may not be implemented per default may be, that it would also inject possible mock implementations where inappropriate. Though I'm still interested wether this is possible or not. :)</p>
http://stackoverflow.com/questions/1746387/castle-windsor-problem-with-multiple-constructors0Castle Windsor: Problem with Multiple Constructorshighvoltage2009-11-17T03:23:44Z2009-11-17T09:02:11Z
<p>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 application. </p>
<p>For the most part, the conversion has gone well and the implementation of the containers has executed flawlessly. I am however having a small issue with my repository objects.</p>
<p>I have a user repository object that is coded in the following fashion:</p>
<pre><code>public class UserRepository : IUserRepository {
public UserRepository(IObjectContext objectContext) {
// Check that the supplied arguments are valid.
Validate.Arguments.IsNotNull(objectContext, "objectContext");
// Initialize the local fields.
ObjectContext = objectContext;
}
public UserRepository(IObjectContextFactory factory)
: this(factory.CreateObjectContext()) {
}
// -----------------------------------------------
// Insert methods and properties...
// -----------------------------------------------
}
</code></pre>
<p>To correspond to this code, I have setup the following entries in my application's configuration file:</p>
<pre><code><castle>
<components>
<component id="objectContextFactory" lifestyle="custom"
customLifestyleType="Common.Infrastructure.PerWebRequestLifestyleManager, Common.Castle"
service="Project.DAL.Context.IObjectContextFactory, Project.DAL.LINQ"
type="project.DAL.Context.ObjectContextFactory, Project.DAL.LINQ">
</component>
<component id="userRepository" lifestyle="custom"
customLifestyleType="Common.Infrastructure.PerWebRequestLifestyleManager, Common.Castle"
service="Project.BL.Repository.IUserRepository, Project.BL"
type="Project.BL.Repository.UserRepository, Project.BL.LINQ">
<parameters>
<factory>${objectContextFactory}</factory>
</parameters>
</component>
</components>
</castle>
</code></pre>
<p>To me, everything looks like it should. When I attempt to resolve an instance of the IObjectContextFactory service, I retrieve an ObjectContextFactory object. My problem comes in when I try and resolve an instance of the IUserRepository service. I am treated to the following delightful exception:</p>
<blockquote>
<p>Can't create component 'userRepository' as it has dependencies to be satisfied.
userRepository is waiting for the following dependencies: </p>
<p>Services:</p>
<p><code>- SandCastle.DAL.Context.IObjectContext which was not registered.</code></p>
</blockquote>
<p>I've tried everything I can think of on this. So, unto you stackoverflow readers, I say: got any ideas?</p>