我有一個Java庫,我需要將其轉換爲JS。我發現解決方案GWT to create utility javascript library使用gwt-exporter。我以前從未使用過GWT。我試過GWT-exporter. Getting started,但不清楚如何使用它。簡單地如何運行該項目來生成JS?GWT-出口商。工作示例
import org.timepedia.exporter.client.ExporterUtil;
public class JS implements EntryPoint {
public void onModuleLoad() {
// Export all Exportable classes
ExporterUtil.exportAll();
}
}
哪裏可以找到相關性爲EntryPoint
:
的pom.xml
<dependencies>
<dependency>
<groupId>org.timepedia.exporter</groupId>
<artifactId>gwtexporter</artifactId>
<version>2.4.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
Java類?
也許有人可以分享工作的例子嗎?
高興你理解了它的類/方法! –