我有一个 Java 库,我需要将其转换为 JS。我找到了解决方案GWT 来创建实用程序 javascript 库以使用 gwt-exporter。我以前从未使用过 GWT。我试过GWT 导出器。入门但不清楚如何使用它。简单来说如何运行项目生成JS?
pom.xml
<dependencies>
<dependency>
<groupId>org.timepedia.exporter</groupId>
<artifactId>gwtexporter</artifactId>
<version>2.4.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
Java类:
import org.timepedia.exporter.client.ExporterUtil;
public class JS implements EntryPoint {
public void onModuleLoad() {
// Export all Exportable classes
ExporterUtil.exportAll();
}
}
在哪里找到依赖EntryPoint
?
也许有人可以分享工作示例?