Confused??

Trying to implement GenericMangerImpl to take advantage of CRUD methods

public class PersonManagerImpl extends GenericManagerImpl implements
PersonManager{  

In doing so I now need to create an instance of PersonManager in my
PersonController but not sure how.

Tutorial shows:
  private GenericManager<Person, Long> personManager = null;   
  
    public void setPersonManager(GenericManager<Person, Long> personManager)
{   
        this.personManager = personManager;   
    }

But then don't have reference to custom DAO methods in PersonManager. Can
someone post how this would be done?
-- 
View this message in context: 
http://www.nabble.com/Extending-GenericManager---Spring-MVC-tf3476679s2369.html#a9704566
Sent from the AppFuse - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to