我开始服用GWT 2.5的优势。 最酷的功能 GWT 2.5的是直接在HTML页面中编写Java代码,像这样的能力:
<script type="text/java">
String helloWorld = "Hello world";
Window.alert(helloWorld);
</script>
诀窍是使用ServletFilter
在服务器端。 这ServletFilter
使用GWT编译器来编译Java代码转换为JavaScript并注入到返回给客户端的HTML。
我无法弄清楚如何在过滤此web.xml
或如何将信息传递给编译器。 我怎样才能做到这一点?