如何使用 GWT 编译器禁用修剪

发布于 2024-12-06 13:57:26 字数 778 浏览 1 评论 0 原文

如何在 GWT 编译器中禁用修剪?

(我正在尝试使用 GWT 编译器创建一些用 Java 编写的游戏逻辑的 Javascript 版本)

也许修剪不是问题?我正在使用以下 Java 类进行测试,生成的 .js 文件中没有任何字段或字符串“test123”;

Test1.java

package com.joyplay.web.games.mmrb.shared.d1;

public class Test1 {
    public String field1;
    public int field2=0;

    public void onModuleLoad() {
        field1 = "test123";
    }

    public int doSomething1(int a){
        return a+555;
    }

    public int doSomething2(){
        return ++field2;
    }    
}

Test1.gwt.xml

<module rename-to="hello">
    <inherits name="com.google.gwt.core.Core" />
    <source path="d1"/>
    <entry-point class="com.joyplay.web.games.mmrb.shared.d1.Test1"/>
</module>

How do I disable pruning in the GWT compiler?

(I'm trying to use the GWT compiler to create a Javascript version of a some game logic written in Java)

Maybe pruning is not the issue? I'm testing with the following Java class and none of the fields or the string "test123" are in the generated .js file;

Test1.java

package com.joyplay.web.games.mmrb.shared.d1;

public class Test1 {
    public String field1;
    public int field2=0;

    public void onModuleLoad() {
        field1 = "test123";
    }

    public int doSomething1(int a){
        return a+555;
    }

    public int doSomething2(){
        return ++field2;
    }    
}

Test1.gwt.xml

<module rename-to="hello">
    <inherits name="com.google.gwt.core.Core" />
    <source path="d1"/>
    <entry-point class="com.joyplay.web.games.mmrb.shared.d1.Test1"/>
</module>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不爱素颜 2024-12-13 13:57:26

(我正在尝试使用 GWT 编译器创建一些用 Java 编写的游戏逻辑的 Javascript 版本)

看看 gwt-exporter 项目。

(I'm trying to use the GWT compiler to create a Javascript version of a some game logic written in Java)

Have a look at the gwt-exporter project.

画尸师 2024-12-13 13:57:26

GWT 编译器将删除上面的所有代码,因为它什么也没做。您可以使用 -draftCompile 或 -optimize 0 标志关闭优化

GWT compiler will remove all of the code above, since it is doing nothing. You can turn off optimization using -draftCompile or -optimize 0 flags

谷夏 2024-12-13 13:57:26

这主要取决于您如何构建它。

对于 maven:

<gwt.jsStyle>PRETTY</gwt.jsStyle>

或者关于官方文档

-style 脚本输出样式:OBF[USCATED]、PRETTY 或
详细(默认为 OBF)

Mainly this depends on how you build it.

For maven:

<gwt.jsStyle>PRETTY</gwt.jsStyle>

Or regarding to the official documentation:

-style Script output style: OBF[USCATED], PRETTY, or
DETAILED (defaults to OBF)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文