1

我试图通过下载 jar 并在Eclipse中使用普通的 Java-Project 来使用Central Maven Repo的 MD-Library 。

中央 Maven 存储库中,我使用了 jar gwt-material,因为它在编译期间说我也需要 MD-jQuery-lib,所以我也将该 jar 集成到gwt-material-jQuery中。

所以跟随你会发现

  • gwt.xml:我继承了 gwt 项目所需的所有库
  • 带有-method的 entryPoint-class ( Addressbook2)onModuleLoad()
  • UIBinder-class,需要在entryPoint-class中添加一个实例
  • 将 MatDes-Lib 集成为资源字段的 UIBinder.ui.xml 文件

提前为这么大的帖子道歉。不知道如何包装更紧凑。

因此,在集成 MatDes-jQuery-Lib 之后,现在在Eclipse中运行和编译它确实可以使用,但是当我在本地主机上打开地址时,我只是得到一个没有内容的白色浏览器窗口,甚至无法打开 Dev-Tools。我是在配置中遗漏了什么,还是代码不正确而我必须对其进行调整?GWT Development Mode with Jettyhttp://127.0.0.1:8888/Addressbook.html

gwt.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.8.2//EN"
  "http://gwtproject.org/doctype/2.8.2/gwt-module.dtd">
<module rename-to='addressbook'>
  <inherits name='com.google.gwt.user.User'/>
  <inherits name='com.google.gwt.user.theme.clean.Clean'/>
  <inherits name='gwt.material.design.jquery.JQuery'/>
  <inherits name='gwt.material.design.GwtMaterialDesignBasic'/>

  <!-- Specify the paths for translatable code                    -->
  <source path='client'/>
  <source path='shared'/>
  <entry-point class='addressbook.client.Addressbook2'/>
  <!-- allow Super Dev Mode -->
  <add-linker name="xsiframe"/>
  <set-configuration-property name="CssResource.enableGss" value="true" />
  <extend-property name="locale" values="de, en"/>
  <set-property-fallback name="locale" value="en"/>
</module>

入口点类

import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.Window;
import com.google.gwt.user.client.ui.RootLayoutPanel;

import addressbook.client._2view.MainViewUIB;
public class Addressbook2 implements EntryPoint {

    @Override
    public void onModuleLoad() {
        Window.alert("Hello, World!");
        RootLayoutPanel.get().add(new MainViewUIB());
    }
}

MainViewUIB 类

package addressbook.client._2view;

import com.google.gwt.core.client.GWT;
import com.google.gwt.uibinder.client.UiBinder;
import com.google.gwt.uibinder.client.UiField;
import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.Widget;

import gwt.material.design.client.resources.MaterialResources;

public class MainViewUIB extends Composite {

    private static final MainViewUIBUiBinder uiBinder = GWT.create(MainViewUIBUiBinder.class);

    interface MainViewUIBUiBinder extends UiBinder<Widget, MainViewUIB> {
    }

    public MainViewUIB() {
        initWidget(uiBinder.createAndBindUi(this));
    }

    @UiField(provided = true)
    MaterialResources res;
}

MainViewUI.ui.xml

<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
    xmlns:m="urn:import:gwt.material.design.client.ui">
    <ui:with type="gwt.material.design.client.resources.MaterialResources" field="res"></ui:with>
    <m:MaterialPanel>
        <m:MaterialIcon marginTop="120" iconType="POLYMER" iconSize="LARGE"/>
        <m:MaterialLabel text="Hello MD World" fontSize="2em"/>
        <m:MaterialLabel text="Start building now your gwt-material apps." fontSize="0.8em"/>
    </m:MaterialPanel>
</ui:UiBinder>

这就是我通过在 chrome 中检查页面得到的结果,我只在页面上得到一个元素:

<iframe id="addressbook" tabindex="-1" style="position: absolute; width: 0px; height: 0px; border: none; left: -1000px; top: -1000px;">
<script src="http://127.0.0.1:9876/addressbook/0A7EA82001E95E9BED1D0ABA0EF89DEF.cache.js"></script>
</iframe>
4

1 回答 1

1
@UiField(provided = true)
MaterialResources res;

provided=true意味着 .ui.xml 不需要创建此资源,因为您将在调用 createAndBind 之前提供它。不这样做可能会导致在尝试制作小部件时发生 NullPointerExceptions,这将导致此路径上没有内容可见。但是,您的 .ui.xml 中似乎没有任何实际使用res(除了在 中声明ui:with,这就像将其声明为变量一样),因此您可能可以同时删除该字段和ui:with指向它的指向。

于 2018-12-07T13:50:52.733 回答