2

https://github.com/gwtbootstrap/gwt-bootstrapから GWT zip の Twitter Bootstrap をダウンロードしました。私は GWT を初めて使用し、Eclipse でライブラリを使用する方法に関する適切なドキュメントやチュートリアルをまだ見つけていません。

4

3 に答える 3

2

Mavenビルドを使用している場合は、Eclipse でm2eclipseを構成し、 GWT Bootstrap の使用を開始します。

手順は次のとおりです。

STEP 1-A :gwt-bootstrap Maven の依存関係を追加する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 :gwt-bootstrap Maven リポジトリを追加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 : モジュールの構成 - GWT-Bootstrap ウィジェット ライブラリを継承

<!--  inherit the GWT-Bootstrap widget library -->
<inherits name="com.github.gwtbootstrap.Bootstrap"/>
<!--  end of inherit the GWT-Bootstrap widget library -->

STEP 3 : 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プラグインはそれを行うのに役立ちます。正確な手順やチュートリアルについては、Google で検索してください。

于 2013-01-18T07:22:35.740 に答える
1

Maven を使用したくない場合は、次の手順に従ってください。

  1. ここからライブラリのバージョンをダウンロードします。

  2. .jar ファイルを Eclipse プロジェクトのビルド パスに追加します。

  3. Module.gwt.xmlファイルに追加します。

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

gwtbootstrapJava コードまたは UIBinder のみで使用できるようになりました

于 2013-10-30T15:56:55.650 に答える