使用注释保护 Tapestry 事件处理程序

发布于 2024-12-17 04:12:23 字数 114 浏览 1 评论 0原文

如何通过注释保护单个事件处理程序? 我知道如何保护完整页面,但我不知道如何在调用之前检查方法是否有注释。

这可能吗?

我不想使用 Spring-security

谢谢

How may I secure single eventhandlers by annotations?
I know how to secure Complete pages, but i have no idea how to check before invocation if a a method has an annotation.

Is this possible?

I dont want to use Spring-security

Thanks

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

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

发布评论

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

评论(2

折戟 2024-12-24 04:12:23

ChenillKit access 是一个很好的模块。
还有一个基于安全框架 Apache Shiro 的 tapestry-security 模块,它提供了注释,例如

@RequiresPermissions("news:delete")
  public void onActionFromDeleteNews(EventContext eventContext) {
     ...
  }

ChenillKit access is a nice module.
There is also the tapestry-security module based on the security framework Apache Shiro which provides annotation like

@RequiresPermissions("news:delete")
  public void onActionFromDeleteNews(EventContext eventContext) {
     ...
  }
一世旳自豪 2024-12-24 04:12:23

通过 Chenillekit 访问 模块,您可以使用 @Restricted 事件方法上的注释也如下所示:

@Restricted(role = YOUR_ROLE_CONSTANT)
@OnEvent(value="eventName")
private Object handleEvent() throws Exception {
    ... your event code ....
}

With the Chenillekit access module you can use the @Restricted annotation on an Event method as well like so:

@Restricted(role = YOUR_ROLE_CONSTANT)
@OnEvent(value="eventName")
private Object handleEvent() throws Exception {
    ... your event code ....
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文