|
From: Lars F. <lar...@gm...> - 2003-07-27 06:36:42
|
What a great community !
Am Sonntag, 27. Juli 2003 06:31 schrieb tri...@tr...:
> Jean-Pierre & Lars,
>
> The Step-by-step guide had the source name for this class specified as
> springapp/src/bus/PriceIncreaseFormController even though the package name
> is web. I have fixed this along with a lot of other things.
>
> Thomas
>
> > -----Message d'origine-----
> > De : JP Pawlak [mailto:jp....@ti...]
> > Envoy=E9 : samedi 26 juillet 2003 20:30
> > =C0 : 'Lars Fischer'
> > Objet : RE : RE : [Springframework-developer] AppServer skills
> >
> > Hi Lars,
> >
> > Thanks for trace.
> > At a first look, I see that the class web.PriceIncreaseFormController
> > could not be loaded. As it's the right class name which Tomcat tries to
> > load, we can assume that the configuration is OK.
> > So looking both on your stack and the source, I see that the class is
> > loaded by the factory as a bean.
> > - If you forgot to create the source in web package, do it.
> > - If done and still not works, add within a constructor without arg,
> > like:
> > <code>
> > Public PriceIncreaseFormController() {
> > super();
> > }
> > </code>
> >
> > In any case, I will follow the entire tutorial and check for
> > inconsistencies if any.
> >
> > Regards,
> > Jean-Pierre
> >
> >
> > root cause
> >
> > java.lang.ClassNotFoundException: web.PriceIncreaseFormController
> > at
> > org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader
> > .java:1443)
> > at
> > org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader
> > .java:1289)
> > at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
> > at java.lang.Class.forName0(Native Method)
> > at java.lang.Class.forName(Class.java:219)
> > at
> > com.interface21.beans.factory.xml.XmlBeanFactory.parseBeanDefinition(Xml
> > BeanFactory.java:283)
> > at
> >
> >
> >
> >
> >
> >
> > -------------------------------------------------------
> > This SF.Net email sponsored by: Free pre-built ASP.NET sites including
> > Data Reports, E-commerce, Portals, and Forums are available now.
> > Download today and enter to win an XBOX or Visual Studio .NET.
> > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_0=
1/
> >01 _______________________________________________
> > Springframework-developer mailing list
> > Spr...@li...
> > https://lists.sourceforge.net/lists/listinfo/springframework-developer
>
> -------------------------------------------------------
> This SF.Net email sponsored by: Free pre-built ASP.NET sites including
> Data Reports, E-commerce, Portals, and Forums are available now.
> Download today and enter to win an XBOX or Visual Studio .NET.
> http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/=
01
> _______________________________________________
> Springframework-developer mailing list
> Spr...@li...
> https://lists.sourceforge.net/lists/listinfo/springframework-developer
|