在哪里可以找到 Wicket Stuff 注释包?

发布于 2024-11-17 05:18:42 字数 600 浏览 2 评论 0原文

在哪里可以找到 wicketstuff-annotation.jar?它过去至少在 http://wicketstuff.org/maven/repository 的 Maven 存储库中可用但现在已经不存在了,而且 Wicket Stuff 主页也没有多大帮助。

具体来说,我需要 org.wicketstuff.annotation.mount.MountPath 因为我想要 可读 URL 在我的 Wicket 应用程序中,并以一种优雅的方式找到注释安装页面。 (我想知道为什么这种东西不包含在核心 Wicket 发行版中......)

(任何下载 jar 的地方都可以;我在当前项目中不使用 Maven。)

Where I can find wicketstuff-annotation.jar? It's used to be available at least in a Maven repo at http://wicketstuff.org/maven/repository but that doesn't exist anymore, and the Wicket Stuff homepage is not very helpful either.

Specifically, I need org.wicketstuff.annotation.mount.MountPath because I want readable URLs in my Wicket app and find annotations an elegant way to mount pages. (I wonder why this kind of stuff isn't included in core Wicket distribution...)

(Any place to download the jar from would be fine; I don't use Maven in current project.)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

烟花易冷人易散 2024-11-24 05:18:42

您可以将页面安装在应用程序中的任何位置,通常是在 Applicationinit() 方法中,例如:

@Override
protected void init() {
    mountBookmarkablePage("/users", UsersPage.class);
}

也就是说,如果您想使用注释包,它可以从 Maven Central 获取

You can just mount your pages anywhere in your application, typically in your Application's init() method, like:

@Override
protected void init() {
    mountBookmarkablePage("/users", UsersPage.class);
}

That said, if you want to use the annotations package, it is available from Maven Central

浅紫色的梦幻 2024-11-24 05:18:42

Wicket 1.5 更新:
您应该使用方法 mountPage() 而不是 mountBookmarkablePage(),因为该方法已从 Wicket 1.5 中删除。

@Override
protected void init() {
    mountPage("/users", UsersPage.class);
}

https://cwiki.apache.org/WICKET/migration-to-wicket -15.html

Update from Wicket 1.5:
You should use the method mountPage() instead of mountBookmarkablePage() as that method has been removed from Wicket 1.5.

@Override
protected void init() {
    mountPage("/users", UsersPage.class);
}

https://cwiki.apache.org/WICKET/migration-to-wicket-15.html

横笛休吹塞上声 2024-11-24 05:18:42

这是URL。您可以点击Binary链接下载所需的jar。

This is the URL. You can click on Binary link to download the required jar.

溺渁∝ 2024-11-24 05:18:42

今天,一位社区用户将该库升级到了 Wicket 1.5,因此它将可用于下一版本 (1.5-RC6)。在此之前,1.5 的用户可以从 Github 存储库使用它。

A community user today contributed an upgrade of the library to Wicket 1.5, so it will be available for next release (1.5-RC6). Until then the users of 1.5 can use it from Github repo.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文