gwt 与 maven 和 bootstrap eclipse 启动项目

gwt with maven and bootstrap eclipse starter project

我为在 Eclipse 中集成 Maven 和 GWT 而苦苦挣扎了几天。我在网上搜索一些准备好导入的项目,但不幸的是,这么久都崩溃了。

我是 gwt 的新手。我想学习它。早些时候我使用 maven,spring 和 playframework with sbt.

我没有使用过类似 ant 的构建工具。但我喜欢它在 gwt 和 eclipe 之间的集成(我可以在超级开发模式下单击 运行)。

一个想法是我不喜欢在ant中,我必须手动下载jar并将它放在类路径中。我觉得maven能帮我做就没必要了

我也想使用这个库:gwtbootstrap3 我一个人搞不定。

你们谁能为我准备那个我可以直接导入的 eclipse 项目。

这是我最新的 pom.xml:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>pl.korbeldaniel.btsp</groupId>
<artifactId>btsp</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>btsp</name>

<properties>
    <gwt.version>2.7.0</gwt.version>
    <gwtBootstrap3.version>0.9.1-SNAPSHOT</gwtBootstrap3.version>
    <webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
    <dependency>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>gwt-maven-plugin</artifactId>
        <version>${gwt.version}</version>
    </dependency>
</dependencies>

<build>
    <finalName>btsp</finalName>
    <plugins>
        <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>2.3.2</version>
            <configuration>
                <source>1.7</source>
                <target>1.7</target>
            </configuration>
        </plugin>
    </plugins>
</build>

但我不能 运行 像原生 gwt 项目。

是的,这绝对有可能。您只需筛选大量文档即可弄清楚。

  1. 您需要 Google eclipse 插件m2e(Eclipse 的 Maven 集成)插件

  2. 完成这些后,右键单击 GWT 项目 -> 配置 -> 转换为 Maven 项目。

  3. 现在,要使用 GwtBootstrap3,您需要做的就是将 GWT 和 gwtBootstrap3 作为依赖项添加到您的 pom.xml 文件中。 (详情here)。

如果您需要任何准备导入的 Maven 项目,您可以从 github 和 运行 克隆 GwtBootstrap3-demo 项目作为 Web 应用程序。至于学习GWT,tutorials是你最好的选择(密切关注UiBinder for GwtBootstrap3)。

单击 here, here and here 了解有关设置所有内容的详细信息。