In my application I am using Spring3 MVC framework. I have a DAO class TestDAO1.java in which I need a method getArticleList() which is declared in TestDAO2.java class.
As per my knowledge, we can inject Service layer objects to controllers and DAOs to Service layer. But can we inject a DAO object to a DAO class ?
Here I want to inject TestDAO2 class object to TestDAO1.java class. So I can use getArticleList() method. How can I do it ?
Is it a right way OR standard to inject a DAO to DAO ?
