https://github.com/gwtbootstrap/gwt-bootstrapから GWT zip の Twitter Bootstrap をダウンロードしました。私は GWT を初めて使用し、Eclipse でライブラリを使用する方法に関する適切なドキュメントやチュートリアルをまだ見つけていません。
3 に答える
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>
プロジェクトとして作成されるため、プラグインmaven
を使用する必要があります。m2eclipse
その外部のEclipseのクローンを作成することから始めて、それを既存のmavenプロジェクトとしてEclipseにインポートできます。m2eclipse
プラグインはそれを行うのに役立ちます。正確な手順やチュートリアルについては、Google で検索してください。
Maven を使用したくない場合は、次の手順に従ってください。
ここからライブラリのバージョンをダウンロードします。
.jar ファイルを Eclipse プロジェクトのビルド パスに追加します。
Module.gwt.xml
ファイルに追加します。
<inherits name ="com.github.gwtbootstrap.Bootstrap"/>
gwtbootstrap
Java コードまたは UIBinder のみで使用できるようになりました