Hi All,
I'm comparatively new to "Spring". I have a problem, like, in my application I need to perform all the read operations from DB should be done through SQL and all the data manipulation operation shoud be done through Hibernate. For this purpose I'm thinking about two different implementations for Dao Interface. One is a JDBC implementation and the other is Hibernate.
Is this possible? can I inject 2 different implementations of an interface?
Looking forward for your help .....


Reply With Quote