如何安装gwtbootstrap3教程?

如何安装gwtbootstrap3教程?,gwt,uibinder,gwt-bootstrap,gwtbootstrap3,Gwt,Uibinder,Gwt Bootstrap,Gwtbootstrap3,我对gwt非常陌生,我需要将现有应用程序更改为gwtbootstrap,以便使用uibinder创建模板 我在谷歌上搜索了基本的安装说明。下载后这些文件会放在哪里。 如果你没有Maven,从 1) 下载JAR文件并将其添加到类路径 2) 在GWT模块中继承GwtBootstrap3模块: <module> <inherits name="org.gwtbootstrap3.GwtBootstrap3"/> ... </module> ..

我对gwt非常陌生,我需要将现有应用程序更改为gwtbootstrap,以便使用uibinder创建模板

我在谷歌上搜索了基本的安装说明。下载后这些文件会放在哪里。
如果你没有Maven,从

1) 下载JAR文件并将其添加到类路径

2) 在GWT模块中继承GwtBootstrap3模块:

<module>
    <inherits name="org.gwtbootstrap3.GwtBootstrap3"/>
    ...
</module>

...
3) 使用UiBinder XML中的小部件:

<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
             xmlns:g="urn:import:com.google.gwt.user.client.ui"
             xmlns:b="urn:import:org.gwtbootstrap3.client.ui">

    <b:Container>
        <b:PageHeader>Yay buttons!</b:PageHeader>

        <b:Button>Some button</b:Button>
        <b:Button type="DANGER" size="LARGE">Dangerous button</b:Button>
    </b:Container>

</ui:UiBinder>

耶,按钮!
一些按钮
危险按钮

我无法解析“b”名称空间,因此页面为空。要正确解析名称空间,还需要其他步骤吗?如果使用Eclipse,有时它很难看到导入的依赖项。我建议进行常规清洁(项目>清洁)