3

当我浏览这个com.google.gwt.dev包时,我发现. 中有两个可用的编译器com.google.gwt.dev

我需要从我的 Java 应用程序中以编程方式编译 GWT 项目。哪一个适合?

4

2 回答 2

3

GWTCompiler是旧的入口点。该类已被弃用多年,最终从 GWT 2.5.1-rc1 开始被删除。

于 2013-03-11T13:26:10.623 回答
1
 Both the classes are the main executable entry point 
 for the GWT Java to JavaScript compiler. 

com.google.gwt.dev.GWTCompiler弃用

使用 com.google.gwt.dev.Compiler (来自 2.5 的最新编译器)

在这里你可以找到这两个类api

GWTCompiler //在这里你可以发现它已被弃用

编译器

于 2013-03-11T13:26:03.110 回答