If you're extending GenericManager, you should have access to the CRUD
methods.  Did you look at the bottom of the tutorial, where you write
a PersonManager.java and PersonManagerImpl.java?

Matt

On 3/27/07, whyme <[EMAIL PROTECTED]> wrote:

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]




--
http://raibledesigns.com

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

Reply via email to