我开始利用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
中过滤此内容或如何将信息传递给编译器。我怎么能这样做?
答案 0 :(得分:2)
以下是您所指的Google I/O 2012 - The History and Future of Google Web Toolkit。以下是Ray Cromwell发布的slides。