I write 2 GWT module and compile it. I want locate ***.nocache.js files into a html file.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need to include the .nocache.js files as scripts in your HTML file:
You also need to configure your web server to add headers to requests to .nocache. files to prevent caching by client browsers. If these files are cached, clients won’t see new versions of your application easily. A web server portable way to do this is to use a servlet filter:
Reference this in web.xml: