GWT代码服务器参数

时间:2012-05-23 10:16:13

标签: gwt

我在下面的简单方案中遇到GWT codeserver parameter上的问题,

项目结构

myapp
+src
++mypkg
---MainWindow.gwt.xml
---NextWindow.gwt.xml
+++client
----MainWindow.java
----NextWindow.java
+war
--MainWindow.html
--NextWindow.html

MainWindow.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>

MainWindow.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);
    }
}

MainWindow.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 levelDevmode之间Prodmode的一致性来解决问题。< / p>

确实有哪些优选的解决方案?

1 个答案:

答案 0 :(得分:1)

您可以使用if(GWT.isProdMode())检查Prodmode和Devmode,如果它是devmode则跟踪参数。

这不会影响生产模式 - gwt编译器足够聪明,可以忽略devmode代码,因此devmode-block永远不会进入已编译的javascript。