我在GWT codeserver parameter
下面的一个简单场景中遇到了一个问题,
项目结构
myapp
+src
++mypkg
---MainWindow.gwt.xml
---NextWindow.gwt.xml
+++client
----MainWindow.java
----NextWindow.java
+war
--MainWindow.html
--NextWindow.html
主窗口.gwt.xml
<?xml version="1.0" encoding="UTF-8"?>
<module rename-to='mainwindow'>
<inherits name='com.google.gwt.user.User'/>
<entry-point class='mypkg.client.Mainwindow'/>
<source path='client'/>
</module>
主窗口.java
package mypkg.client;
import com.google.gwt.core.client.*;
import com.google.gwt.event.dom.client.*;
import com.google.gwt.user.client.ui.*;
public class MainWindow implements EntryPoint {
@Override
public void onModuleLoad() {
Button button = new Button("NextWindow!");
button.addClickHandler(new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
Window.open("/NextWindow.html", null, null);
}
});
RootPanel.get().add(button);
}
}
主窗口.html
<!doctype html>
<html>
<head>
<title>MainWindow</title>
<script type="text/javascript" language="javascript"
src="mainwindow/mainwindow.nocache.js"></script>
</head>
<body>
<h1>Hi, MainWindow!</h1>
</body>
</html>
NextWindow.gwt.xml
<?xml version="1.0" encoding="UTF-8"?>
<module rename-to='nextwindow'>
<inherits name='com.google.gwt.user.User'/>
<entry-point class='mypkg.client.NextWindow'/>
<source path='client'/>
</module>
NextWindow.java
package mypkg.client;
import com.google.gwt.core.client.*;
import com.google.gwt.user.client.ui.*;
public class NextWindow implements EntryPoint {
@Override
public void onModuleLoad() {
RootPanel.get().add(new Label("Hi, NewLabel!"));
}
}
NextWindow.html
<!doctype html>
<html>
<head>
<title>NextWindow</title>
<script type="text/javascript" language="javascript"
src="nextwindow/nextwindow.nocache.js"></script>
</head>
<body>
<h1>Hi, NextWindow!</h1>
</body>
</html>
从Devmode
链接启动编译的 myapp 时,
http://127.0.0.1:8888/MainWindow.html?gwt.codesvr=127.0.0.1:9997
点击按钮“NextWindow”然后GWT browser plugin
弹出投诉窗口,
Module NextWindow need be (re)compiled!
确认它,然后从链接打开一个新的浏览器窗口Prodmode
,
http://127.0.0.1:8888/NextWindow.html
而不是所需的链接Devmode
,
http://127.0.0.1:8888/NextWindow.html?gwt.codesvr=127.0.0.1:9997
因此它只显示,
Hi, NextWindow!
但是下面非常期待的内容并没有出现,
Hi, NewLabel!
如果我们追踪GWT codeserver parameter
?gwt.codesvr=127.0.0.1:9997
源代码,可以通过牺牲 和 之间的一致性来解决source level
问题。Devmode
Prodmode
确实有哪些更可取的解决方案?