Hi all

Consider this file structure:
Code:
-businessobjects
   \-User.java
-dao
   \-IUserDAO.java
-daojpa
   \-UserDAO.java
-daohibernate
   \-UserDAO.java
As you can see, both implementations of IUserDAO have the same name and, of course, the same type. How can I make sure, that annotation driven @Autowire will make use of the one I want (e.g. daojpa)?

Thanks
Alo