GWT module may need to be (re)compiled REDUX

前端 未结 8 1661
日久生厌
日久生厌 2020-11-27 03:30

When running in compiled mode I get this dreaded GWT Module \'mymodule\' may need to be (re)compiled dialog message.

I\'ve compiled a list of the things that others

8条回答
  •  情歌与酒
    2020-11-27 04:25

    I had a similar problem. Doing mvn clean install on my GWT project got me a war file, which upon deploying in tomcat resulted in the same "GWT Module 'mymodule' may need to be (re)compiled" dialog message. I also did all the mentioned stuff in here without any success.

    Doing mvn clean install -DskipTests=true did the job for me.
    OR
    Doing mvn clean install without invoking the generated test URL (sth. like this: http://:53701/mymoduleJUnit.JUnit/junit-standards.html?gwt.codesvr=:53697)

    The test phase obviously did overwrite my initially created *.nocache.js via some fancy development mode url, thus packaging me a wrong *.nocache.js in the end.

提交回复
热议问题