我遵循GWT文档Coding Basics - JavaScript: JsInterop,通过注释@JsMethod
将Java类导出到JavaScript。但是,Java类不会转换为JavaScript。
这是我的Java课程:
package io.mincongh.client;
import jsinterop.annotations.JsMethod;
public class ExportedMethods {
@JsMethod
public static String sayHello(String name) {
return "Hello, " + name;
}
}
我的项目是在Maven中构建的,通过GWT Maven插件2.8.2:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>test</goal>
<goal>generateAsync</goal>
</goals>
</execution>
</executions>
<configuration>
<runTarget>StockMarket.html</runTarget>
<modules>
<module>io.mincongh.StockMarket</module>
</modules>
</configuration>
</plugin>
当我在浏览器的控制台中调用导出的方法时。然后没有定义方法:
io.mincongh.client.ExportedMethods.sayHello('world');
VM59:1未捕获的ReferenceError:未定义io at:1:1
答案 0 :(得分:3)
来自规范JsInterop v1.0: Nextgen GWT/JavaScript Interoperability,段落 @JsType :
请注意,将Java对象导出到JavaScript以供其命名空间访问(例如此示例)需要
--generateJsInteropExports
标记。
所以你需要在Maven GWT插件中指定这个标志:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
...
<configuration>
<generateJsInteropExports>true</generateJsInteropExports>
</configuration>
</plugin>