如何在使用GWT 2.5时用HTML编写(启用)Java代码?

时间:2013-02-28 19:36:08

标签: java gwt gwt-2.5

我开始利用GWT 2.5。 GWT 2.5最酷的feature是能够直接在我们的HTML页面中编写Java代码的方式,如下所示:

<script type="text/java">
   String helloWorld = "Hello world";
   Window.alert(helloWorld);
</script>

诀窍是在服务器端使用ServletFilter。这个ServletFilter使用GWT编译器将这个java代码编译成Javascript并将其注入返回给客户端的HTML中。

我无法弄清楚如何在web.xml中过滤此内容或如何将信息传递给编译器。我怎么能这样做?

1 个答案:

答案 0 :(得分:2)

以下是您所指的Google I/O 2012 - The History and Future of Google Web Toolkit。以下是Ray Cromwell发布的slides