我从https://github.com/gwtbootstrap/gwt-bootstrap下载了用于 GWT zip 的 Twitter Bootstrap 。我是 GWT 的新手,我还没有找到关于如何在 Eclipse 中使用这些库的适当文档或教程。
3 回答
If you are using maven build, configure m2eclipse in eclipse and go through Getting Started With GWT Bootstrap
The steps include :
STEP 1-A : add gwt-bootstrap
maven dependency in pom.xml
<!-- gwt-bootstrap dependencies start -->
<dependency>
<groupId>com.github.gwtbootstrap</groupId>
<artifactId>gwt-bootstrap</artifactId>
<version>2.1.0.0-SNAPSHOT</version>
</dependency>
<!-- gwt-bootstrap dependencies end -->
STEP 1-B : add gwt-bootstrap
maven repository in pom.xml
<repository>
<id>sonatype</id>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
</repository>
STEP 2 : Configuring module - inherit the GWT-Bootstrap widget library
<!-- inherit the GWT-Bootstrap widget library -->
<inherits name="com.github.gwtbootstrap.Bootstrap"/>
<!-- end of inherit the GWT-Bootstrap widget library -->
STEP 3 : using in UiBinder
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
xmlns:g="urn:import:com.google.gwt.user.client.ui"
xmlns:w="urn:import:com.zcode.t.client.ui.widget"
xmlns:c="urn:import:com.google.gwt.user.cellview.client"
xmlns:gwt="urn:import:com.google.gwt.user.cellview.client"
xmlns:b="urn:import:com.github.gwtbootstrap.client.ui"
>
<g:HTMLPanel>
<b:Button ui:field="saveBtn"/>
</g:HTMLPanel>
</ui:UiBinder>
由于它是作为maven
项目创建的,因此您需要使用m2eclipse
插件。您可以从在 eclipse 外部克隆它开始,然后您可以将其作为现有的 maven 项目导入 eclipse。m2eclipse
插件将帮助您做到这一点。对于确切的步骤或教程,你可以谷歌。
如果您不想使用 maven,可以按照以下步骤操作:
从这里下载一个库版本。
将 .jar 文件添加到 Eclipse 项目的构建路径中
添加到您的
Module.gwt.xml
文件中:
<inherits name ="com.github.gwtbootstrap.Bootstrap"/>
现在您可以gwtbootstrap
仅使用 Java 代码或 UIBinder