我对gwt极为陌生,我需要使用uibinder将现有应用程序更改为gwtbootstrap以用于模板。

我已经在Google上搜索了基本的安装说明。下载后文件会去哪里。
来自https://github.com/gwtbootstrap3/gwtbootstrap3/tree/master/gwtbootstrap3

最佳答案

如果你没有Maven

1)下载JAR文件并将其添加到类路径
http://mvnrepository.com/artifact/org.gwtbootstrap3/gwtbootstrap3

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>

07-26 02:12