在 Wicket 中存储和访问 Bootstrap 的最佳实践
Best practice to store and access Bootstrap in Wicket
这是一个真正的基本问题,我知道有多种访问它的好方法,但是是否有接近 "Best practice" 的东西用于在 Wicket 中存储和访问 Bootstrap?
现在的结构是这样的:
将其复制并粘贴为文本效果不佳。
webapp 是存储 bootstrap 文件夹的正确位置吗?
您将如何为整个项目定义一个可访问的变量?
你会在 .html 中包含 bootstrap 还是在 .java 中包含来自 wicket 的 属性?
你知道吗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,您可以重复使用现有的组件。
只需添加Bootstrap.install(this);
你init()
-method.
这是一个真正的基本问题,我知道有多种访问它的好方法,但是是否有接近 "Best practice" 的东西用于在 Wicket 中存储和访问 Bootstrap?
现在的结构是这样的:
将其复制并粘贴为文本效果不佳。
webapp 是存储 bootstrap 文件夹的正确位置吗?
您将如何为整个项目定义一个可访问的变量?
你会在 .html 中包含 bootstrap 还是在 .java 中包含来自 wicket 的 属性?
你知道吗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,您可以重复使用现有的组件。
只需添加Bootstrap.install(this);
你init()
-method.