yes that was the problem
I had:
private PersonManagerImpl personManager
instead of:
private PersonManager personManager;
sorted, thanks
mraible wrote:
>
> Make sure PersonManagerImpl implements PersonManager and then use a
> dependency on the Interface in your action:
>
> private PersonMan
Make sure PersonManagerImpl implements PersonManager and then use a
dependency on the Interface in your action:
private PersonManager personManager;
public void setPersonManager(PersonManager personManager) {
this.personManager = personManager;
}
Matt
On 4/12/07, Stelios Togias <[EMAIL
Hi,
I have changed applicationContext.xml(from the tutorial) to:
now in person action I have changed:
private PersonManagerImpl personManager;
private List persons;
public void setPersonManager(PersonManagerImpl personManager) {
this.personManager = personManager;
}
and ad