2

我从https://github.com/gwtbootstrap/gwt-bootstrap下载了用于 GWT zip 的 Twitter Bootstrap 。我是 GWT 的新手,我还没有找到关于如何在 Eclipse 中使用这些库的适当文档或教程。

4

3 回答 3

2

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> 
于 2013-03-28T19:43:01.103 回答
2

由于它是作为maven项目创建的,因此您需要使用m2eclipse插件。您可以从在 eclipse 外部克隆它开始,然后您可以将其作为现有的 maven 项目导入 eclipse。m2eclipse插件将帮助您做到这一点。对于确切的步骤或教程,你可以谷歌。

于 2013-01-18T07:22:35.740 回答
1

如果您不想使用 maven,可以按照以下步骤操作:

  1. 从这里下载一个库版本。

  2. 将 .jar 文件添加到 Eclipse 项目的构建路径中

  3. 添加到您的Module.gwt.xml文件中:

<inherits name ="com.github.gwtbootstrap.Bootstrap"/>

现在您可以gwtbootstrap仅使用 Java 代码或 UIBinder

于 2013-10-30T15:56:55.650 回答