vote up 0 vote down star

In my Google web toolkit application, my gwt.xml file includes the following line in the module:

<module rename-to='foo'>
...
  <script src="foo.js"></script>
...

My question is: where in my GWT project do I actually place foo.js so that it gets packed into the war when I compile my project?

flag

0% accept rate
You put it in the same proper place where you always insert script into markup. I really have a bitter distate for applications that write code for you so that you don't have to learn how to do it correctly. JavaScript horribly error prone, and by not learning how to write it properly you are likely introducing catastropic errors that you are entirely unaware of, while at the very least violation all common best practices, such as where to insert your code. – austin cheney Nov 2 at 4:48
1  
This is unhelpful. I know how to write Javascript, but I am new to how GWT works. This is a question about how GWT projects are organized. – NP Nov 2 at 5:00

1 Answer

vote up 0 vote down

Put it in a public folder. A public folder is a folder placed next to a client folder in the same package where your gwt.xml file is located. See also http://code.google.com/webtoolkit/doc/1.6/DevGuideOrganizingProjects.html#DevGuideModules

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.