On Sat, Jan 17, 2009 at 1:46 AM, <[email protected]> wrote: > problem with class file or dependent class; nested exception is > java.lang.NoClassDefFoundError: > MyFtplet (wrong name: MyFtplet/MyFtplet) > <ftplets> > <ftplet name="MyFtplet"> > <beans:bean class="MyFtplet"> > <beans:property name="foo" value="123" /> > </beans:bean> > </ftplet> > </ftplets>
Your class full name is MyFtplet.MyFtplet and this must be used in the "class" attribute in the XML above. /niklas
