在Wicket中存储和访问Bootstrap的最佳实践

时间:2015-10-04 16:50:11

标签: twitter-bootstrap wicket include-path

这是一个真正的基本问题,我知道有多种好方法可以访问它,但是有一些接近于"最佳实践"用于存储和访问Wicket中的Bootstrap?
现在结构是这样的:

Tree of project

复制和粘贴文本会产生不好的结果 webapp 是存储引导程序文件夹的正确位置吗?
您将如何为整个项目定义可访问的变量?
你会在.html中包含引导程序,还是在.java中包含wicket中的属性?

1 个答案:

答案 0 :(得分:2)

您知道https://github.com/l0rdn1kk0n/wicket-bootstrap/

吗?
<dependency>
    <groupId>de.agilecoders.wicket</groupId>
    <artifactId>wicket-bootstrap-core</artifactId>
    <version>0.10.3</version>
</dependency>
<dependency>
    <groupId>de.agilecoders.wicket</groupId>
    <artifactId>wicket-bootstrap-extensions</artifactId>
    <version>0.10.3</version>
</dependency>
<dependency>
    <groupId>de.agilecoders.wicket</groupId>
    <artifactId>wicket-bootstrap-themes</artifactId>
    <version>0.10.3</version>
</dependency>

所以我认为没有必要自己设置引导程序,你可以重用现有的组件。

只需添加Bootstrap.install(this);init() - 方法。