Re: Spring Framework Question

2013-07-06 Thread Mike Tutkowski
Thanks! On Fri, Jul 5, 2013 at 7:46 PM, Soheil Eizadi wrote: > Hi Mike, > You typically have a public interface for your DAO: > public interface InfobloxDao extends GenericDao{ > > } > > Then an implementation: > public class InfobloxDaoImpl extends GenericDaoBase > implements Infoblo

RE: Spring Framework Question

2013-07-05 Thread Soheil Eizadi
Hi Mike, You typically have a public interface for your DAO: public interface InfobloxDao extends GenericDao{ } Then an implementation: public class InfobloxDaoImpl extends GenericDaoBase implements InfobloxDao { ... } This is a good link for the details of Database Access: https://cwik