我试图通过下载{jar}并在 Eclipse 中使用常规Java项目来使用Central Maven Repo中的MD库。
在中央Maven存储库中,我使用了jar gwt-material,并且由于它在编译过程中说我也需要MD-jQuery-lib,因此我为gwt-material-jQuery集成了jar也是如此。
因此,您将发现
Addressbook2
方法的entryPoint类(onModuleLoad()
)对于这么大的帖子,我们表示抱歉。不知道如何将其包装得更紧凑。
因此,在集成MatDes-jQuery-Lib之后,在 Eclipse 中运行并编译它现在可以与GWT Development Mode with Jetty
一起使用,但是当我在本地主机http://127.0.0.1:8888/Addressbook.html
上打开地址时我只是得到一个没有内容的白色浏览器窗口,甚至无法打开Dev-Tools。我是否在配置中缺少某些内容?或者代码是否正确,我必须对其进行调整?
<?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());
}
}
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;
}
<!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页面得到的结果,我在页面上只得到一个Element:
<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>
答案 0 :(得分:1)
@UiField(provided = true)
MaterialResources res;
provided=true
意味着.ui.xml不需要创建此资源,因为您将在调用createAndBind之前提供它。未能做到这一点可能会导致在尝试制作窗口小部件时发生NullPointerException,这将导致在此路径上看不到任何内容。但是,您的.ui.xml中似乎没有任何内容实际上使用res
(除了在ui:with
中声明,这就像将其声明为变量一样),因此您可以同时删除字段和ui:with
指向它。