Tagged Questions
0
votes
0answers
32 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 ...
3
votes
2answers
132 views
Dependency Injection - Does it violate Separation of Concerns?
Does Dependency Injection violate the Separation of Concerns as it pertains to an n-tier architecture?
Suppose you have the following projects:
MyApp.Data
MyApp.Business
MyApp.Web
If I were to use ...
2
votes
1answer
55 views
Preventing implementation details leaking into setup of Dependency Injection Container
Sometimes we can do some neat tricks with our DI Container, for example: auto-binding, managing singletons, managing one-instance-per-request etc. This is great, and can really simplify some ...
6
votes
1answer
659 views
How to tell Ninject to bind to an implementation it doesn't have a reference to
I'm using NinjectMVC3 in my ASP.NET MVC3 project.
I have 3 layers
Foo.Web
Foo.Services
Foo.Data
Foo.Web references Foo.Services but not Foo.Data. One of my services looks like this
public class ...
3
votes
3answers
444 views
Decoupling an ASP.NET MVC application from Entity Framework
If I have this project structure
Foo.Data
reference EntityFramework
Foo.Business
reference Foo.Data
Foo.Web
reference Foo.Business
Isn't that supposed to allow me to prevent adding a ...
0
votes
2answers
313 views
Should I abstract the configuration of an IOC container away from the UI?
Our team has been building a DDD app that has a strongly defined application service layer that is built as the "API" of the system. It handles pulling everything together from the domain and ...
1
vote
3answers
310 views
Does Dependency Injection (DI) rely on Interfaces?
This may seem obvious to most people, but I'm just trying to confirm that Dependency Injection (DI) relies on the use of Interfaces.
More specifically, in the case of a class which has a certain ...
2
votes
3answers
186 views
TDD, creating layer of abstraction
Basically, there is a system at my work place that provides OCR capabilities. The process is that, a third party application is configured to display a captured screen (during the OCR process) and a ...
1
vote
5answers
396 views
Unit test complex classes with many private methods
I've got a class with one public method and many private methods which are run depending on what parameter are passed to the public method so my code looks something like:
public class ...
3
votes
3answers
768 views
Rhino Mocks, Dependency Injection, and Separation of Concerns
I am new to mocking and dependency injection and need some guidance.
My application is using a typical N-Tier architecture where the BLL references the DAL, and the UI references the BLL but not the ...
1
vote
3answers
229 views
Taking baby-steps in applying a better design
In wanting to get some hands-on experience of good OO design I've decided to try to apply separation of concerns on a legacy app.
I decided that I wasn't comfortable with these calls being scattered ...