这是一个真正的基本问题,我知道有多种好方法可以访问它,但是有一些接近于"最佳实践"用于存储和访问Wicket中的Bootstrap?
现在结构是这样的:
答案 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()
- 方法。