Monday, November 28, 2011

Re: Trouble running application on Tomcat but runs fine through Eclipse

You shouldn't EVER run DevMode from your src/main/webapp. "src" is for the *sources* in Maven, nothing should be generated in there that you wouldn't want to commit/push to your SCM.
It's also a bad idea because you wouldn't have your dependencies in the WEB-INF/lib, so a few things will break (loading resources for instance, the way JPA, JDO, or Spring DI do it).

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/AwTIN5f995kJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

No comments:

Post a Comment