Design pattern to reduce coupling between components, by dynamically injecting into a software component dependencies that it needs to function.
0
votes
0answers
10 views
custom membership provider and unity dependency injection
I have found a few questions similar to the one I'm posting but I'm not getting from them what I really need.
I'm still struggling to implement my CustomMembershipProvider using Microsoft Unity DI.
...
0
votes
1answer
27 views
Dependency injection in long-running Windows service - Composition root the right idea?
I am writing a Windows Service that (if all goes according to plan) will run for months at a time. Throughout the lifetime of the service, it will maintain several WCF services (named pipes for ...
0
votes
0answers
21 views
Injected cdi bean doesn't hold variable
Hi I have experimented @Inject annotation with cdi bean. I have one variable in first bean which is injected into second bean. When I call method on second bean using variable in first bean, during ...
1
vote
0answers
20 views
Playframework & Guice without routing
I would like to know if it's possible to inject dependencies using Guice without having to pass by the routing.
If it is how can I call my class Test @Inject()... within my application ?
0
votes
1answer
20 views
Cannot inject EJB specified in applicationcontext.xml in jboss 7
I'm trying to migrate my Java EE application from jboss 5.1 to jboss 7.1 and getting a deployment error.
My EAR has 2 EJB modules and 1 WAR module. both EJB modules gets deployed without any issue. ...
0
votes
2answers
65 views
Explanation Dependency Injection [duplicate]
Can anyone help me explaining in 'easy words'
When should I use dependency injection.
Why should I use it? ( Should I use it in combination OR not with MVC?)
What does in it easy words ? How is it ...
2
votes
1answer
20 views
What is the difference between @Inject and @PersistenceContext?
In a project using JPA, I commonly use
@Inject EntityManager em;
in order to obtain such an object. I saw that many code snippets in the web instead use:
@PersistenceContext EntityManager em;
...
0
votes
2answers
15 views
Android Dagger Dependency Injection fails on private Fields
I'm new to dagger (though I have experience with DI from working on Java EE WebApps using Weld).
What I'm trying to do is to inject a dependency into a class. The field is private.
Dagger then ...
0
votes
1answer
29 views
Guice doesn't inject morphia returned object
I have a class that identifies a field with @Inject. I persist this object to MongoDB using morphia. When the time comes to get the object back, I execute a query, like this:
MorphiaVersionedPerson ...
0
votes
1answer
13 views
Symfony: findTaggedServiceIds() returns empty array
I my symfony 2.1 project I want to use findTaggedServiceIds() inside a custom service.
The service:
class GetServiceMaps
{
private $container;
public function __construct($container)
...
0
votes
4answers
68 views
How to create object more than once with dependency injection
I'm using C#.Net, but any relevant example is very much acceptable.
I have 2 winforms, let's say ListFrm and DetailFrm, in which everytime user click on a button in DetailFrm, a new ListFrm will ...
0
votes
1answer
32 views
Declaring Facade Class in Dependency Injection
I am using Dependency Injection. Say that I has an OrderService class like this:
public class OrderService{
public OrderService(
IOrderValidator validator
, IOrderRepository ...
0
votes
0answers
28 views
Grails injected services exposed as web methods in cxf
I have a service class that I expose as jaxws using the Grails Cxf plugin. In my service I have to inject another service class which I use in my web services. If I make the service field public I get ...
-1
votes
1answer
43 views
How to retain data in an object using modelbinding, retrieved from a repository, that isn't saved to the database?
The problem:
I have a series of questions (shown 1 by 1) that have to be answered by the user. At the end of the series, an overview is shown of the questions and their given answers. Everything ...
0
votes
1answer
34 views
Symfony2 Dependency Injection / Service Container
I'm pretty new to Symfony2 and have built a custom CMS which has various sections such as user management, page management, image library etc. I want to log all activity within the CMS, therefore ...
4
votes
2answers
67 views
Is it possible to inject a bean defined with @Component in a xml defined bean?
And if so which configuration is needed?
The annotated class:
@Component
public class MyClass implements MyInterface
{
@Resource
private MyDependency myDependency; //Isn't initialized ...
0
votes
2answers
39 views
Spring 3 Dependency Injection and interfaces
here is some code from a post here that would explain my question:
Interface:
package org.better.place
public interface SuperDuperInterface{
public void saveWorld();
}
Implementation:
...
2
votes
4answers
86 views
.NET How to replace factory pattern with dependency injection
I have the following situation: a collection of objects have to be sent to different third parties based on a specific property of each object (the property is defined as an Enum). I intend to ...
0
votes
1answer
28 views
Guice Dependency Injection over method, first steps
Im using Java 1.6 with guice 3.0 and im trying to get Dependency Injection working.
I want to switch from Manual Dependency Injection to guice.
Heres My class wehere i want to use the dependency:
...
1
vote
0answers
38 views
Bootstrapper does not load my NinjectModules
I am trying to use Bootstrapper with Ninject according to this official documentation. I have installed Ninject.MVC3 to initialize my Ninject container from nuget and I have created a test module like ...
0
votes
1answer
31 views
asp.net mvc 3 dependency injection ninject
I want to ask something about asp.net mvc 3 dependency injection ninject.
Here is my Interface,
public interface IRegistration<T>
{
bool Registration(T Entity);
}
This is ClsMembers ...
0
votes
0answers
30 views
Is there a way to fine tune Autofac MVC3 Action Injection?
So I got Action Injection with Autofac implemented in large MVC solution, or so I thought.
Turned out there were cases were it did not work properly.
In one of the views we were posting back ...
0
votes
2answers
29 views
How to auto login by a cookie with JSF/EJB/JBoss
I'm using JBoss 7.1.1, JSF2.0, EJB 3.1.
I'm trying to auto login a user when re-visiting. (Not a full login, but at least I give him his customized views - I would never let him/her invoke a ...
1
vote
1answer
34 views
DependencyInjection with a Cache and a Repository that both implement the same interface
So I've encountered a minor conundrum while using Dependency Injection today (using Unity) - I have both a repository and a cache that is backed by that repository.
Here is a very basic ...
1
vote
1answer
21 views
Reference “auto detected” bean in Spring's context
I configured spring to auto-detect some DAOS using
<context:component-scan base-package="com.mycomp.app" />
<tx:annotation-driven />.
@Repository("transactionDao")
public class ...
1
vote
1answer
24 views
inject beans into an abstract class with spring and java ee 5
I am injecting a spring-managed bean into an abstract class and it seems that it doesn't work. Here is an explanation of what I do, if it is not enough, I can edit the post and add some code:
...
1
vote
1answer
20 views
PDO Wrapper Class - If Connected Check
I'm writing a PDO Wrapper as a bit of a learning project and I'm trying to combine it with using dependency injection. My current set up has a factory that will set dependencies. So, for example, I'll ...
0
votes
0answers
61 views
Castle Windsor - slow debugging
I have recently started working on an ASP.NET MVC project that uses Castle Windsor. The problem is, each time I try to debug the application, this part of code takes a couple of minutes to execute:
...
1
vote
1answer
31 views
Can CDI scan a configured folder at injection time for beans? (hot deployment)
I have a Java EE 6 Web application running on Apache TomEE.
My application defines a few interfaces A, B and C. I have multiple .jar files containing implementations to these interfaces. Whenever a ...
1
vote
1answer
27 views
symfony2 configure service with data from another service
Is it possible in Symfony2 to configure a service by injecting data from another service? For example, by calling a getter on another service?
In my specific case I am creating a (reusable) service ...
-2
votes
2answers
39 views
Eclipselink -Glassfish project Object is not a known entity type error
In a JSF 2.1 - Spring 3.1 integrated project.I m trying to handle transaction by container i m using eclipselink 2.3.2 ,Glassfish 3.1.2 and Maven on my project and working on Netbeans IDE 7.2 .
At ...
0
votes
3answers
54 views
How to use dependency injection in ashx (Autofac, MVC4)
public class AutoCompleteCity : IHttpHandler
{
public IAutoCompleteRepository AutoCompleteRepository { get; set; }
public void ProcessRequest(HttpContext context)
{
}
}
public static ...
0
votes
2answers
23 views
Design a multi file type config loader class with Inversion of Control
Let's say I have a class that loads and parses a config file. However that config file can be of 3 types:
JSON
YAML
INI
How can I design my "configLoader" in order to keep things:
loosely ...
0
votes
1answer
13 views
Dependencies Injection configuration for XtextDocumentProvider
I want to extend the class XtextDocumentProvider, which is created by dependencies injection of google injections.
I want to extend this class in order to extend a method for internal needs but I ...
0
votes
1answer
57 views
simple dagger unit test fails
I'm new to dagger. I created a very simply unit test to try to understand how I should use dagger. Unfortunately it fails. I've probably not understood some basic principles of dagger.
public ...
0
votes
1answer
31 views
NHibernate 3.3.3 Medium Trust simple site not working out of the box
I have created a simple bare web site with NHibernate running under Medium Trust and despite all the research I have done saying it should work I can not get the simplest of examples working. Here are ...
1
vote
1answer
24 views
Ninject contextual bindinng like structuremap
Hi I am using Ninject IoC container. I can not convert the structuremap code to ninject.
This is Structuremap code binding
...
0
votes
1answer
35 views
How to define AngularJS Helpers that reuse injectors from their context?
How do I define a function that has access to all the injected arguments of the controller/directive/service, without passing them explicitly?
myShortHand = function(scope, http, element, url) {
...
0
votes
1answer
30 views
IS there any difference between Service Locator Pattern and Dependency Injection Pattern?
Is there any difference between Service Locator
Pattern and Dependency Injection Pattern ?
1
vote
1answer
49 views
Ninject Property Injection Setup Issue [closed]
This question relates to an answer to a question I asked earlier (IoC setup and issue with inherited class).
I've tried setting up property injection to overcome my issue in my other question however ...
0
votes
2answers
71 views
Using Autofac with AJAX-enabled WCF Service
I am desperately trying to get this to work. I have used WCF services to do AJAX with JQuery before without any hustle.
Now I am using Autofac for DI, and so far it is going quiet good, until I want ...
1
vote
1answer
28 views
Inject into ToMethod binding
I'm not quite sure how to ask this so I'll just post my code sample and give a brief description of what I'm trying to do. I have the following bindings setup:
...
0
votes
1answer
48 views
IoC setup and issue with inherited class
I'm fairly new to the IoC pattern and I've hit an issue on the way the following should be setup.
I've got a Service class which has the following constructor:
public ...
0
votes
0answers
23 views
C# Unity mixing [dependency] and xml parameter injection
I'm little bit stucked about one concept in Unity IoC, I'm trying to find out what's wrong and I'd like to make sure, such a concept is able to work using this technology.
public interface ITest {
}
...
0
votes
0answers
12 views
can we load types from the appdomain?
My application does not have a configuration. Will I be able to still use the spring framework?
I'm also looking to load assemblies into my appdomain on the fly...now how do I use types loaded in ...
0
votes
0answers
8 views
Exception when Putting grails filter in package
I create a new Filter to implement AOP in my grails Project .
I create it via GGTS IDE and not command line : com.myproject.aop.Logging
it creates under 'conf' LoggingFilters groovy class in ...
0
votes
0answers
17 views
WCF Unit Test ReceiveContext
Is there a way to inject the ReceiveContext object in order to test a WCF method?
1
vote
1answer
43 views
How to register and use different implementation of same interface?
Suppose I have this scenario:
using System.Linq;
using NUnit.Framework;
public interface IChannel {
void Write(double value);
}
public class Channel: IChannel {
private readonly int ...
1
vote
1answer
26 views
Proper way to test a Symfony2 Service with Doctrine
I'm struggling to find the correct way to unit test my symfony 2 services which use doctrine or other common services.
What i have done so far:
In my understanding the controller actions should:
...
0
votes
0answers
22 views
@Inject in a Java EE application client does not work?
Problem
Injecting an enterprise java bean with @EJB in an application client, launched with Java web start and from a GlassFish 3.1.2.2 (build 5) server.. works as long as the requirements are ...



