In my case, removing all references to spring mvc resolved the
problem. When I go down to the code, the problem is in a method called
nestedLoad.
It calls URL moduleURL = classLoader.getResource(resName);
This one return null in some case because resName is provided without
package classLoader.getResource('foo.gwt.xml') => null ,
classLoader.getResource('com/foo/Test/foo.gwt.xml') => not null UrlI will need to restore the spring config, any idea ? I should try to compile the last trunk? On Nov 24, 3:49 pm, Miguel Méndez <[email protected]> wrote: > There is a known issue with RC1 that might be the cause of this. > Specifically the last one listed in known issue section > ofhttp://code.google.com/p/google-web-toolkit/wiki/GWT_2_0_RC. Even though > your app does not use App Engine, the issue is really that a GC pass before > the browser load request comes across can invalidate some weak refs. This > has been fixed in the trunk and 2.0 branches. > > > > > > On Tue, Nov 24, 2009 at 2:27 AM, Julien Ortega <[email protected]> wrote: > > I suspect a problem between SpringMVC and GWT 2.0 rc1. Within the same > > projet, same class path, if I load my app from a static html file it > > works but if I load my app with a generated html from freemarker and > > springMVC I've got a "[ERROR] [gwtdemo] Unable to find > > 'gwtdemo.gwt.xml' on your classpath; could be a typo, or maybe you > > forgot to include a classpath entry for source?". > > Looks like the moduleloader is not the same. > > Any Idea ? > > > On Nov 23, 5:29 pm, Youen <[email protected]> wrote: > > > The main difference with my 2 project is that the main html file is a > > > Velocity template managed with spring MVC (so there is no main HTML > > > file in my war folder). > > > -- > > > You received this message because you are subscribed to the Google Groups > > "Google Web Toolkit" group. > > To post to this group, send email to [email protected]. > > To unsubscribe from this group, send email to > > [email protected]<google-web-toolkit%2Bunsubs > > [email protected]> > > . > > For more options, visit this group at > >http://groups.google.com/group/google-web-toolkit?hl=en. > > -- > Miguel -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
