Stripes 1.5 - 有什么方法可以向系统询问所有 ActionBean 的列表吗?

发布于 2024-10-10 07:49:38 字数 262 浏览 4 评论 0原文

我正在构建一个应用程序,其中我的默认网页为“index.jsp”,其中包含 标签列表,用于链接到我的各种 actionBean (对于他们的默认处理程序)。

随着我的应用程序的发展并收集更多的actionBeans,我将返回并添加到它们的新链接:有没有一种方法可以自动执行此操作 - 考虑到stripes框架(我相信)在加载时会迭代所有actionBeans - 是有没有办法向框架询问这些信息?

I'm building an application where I have my default webpage as 'index.jsp' which consists of a list of <stripes:link...> tags, to link out to my various actionBeans (to their defaulthandlers).

As my application evolves and gathers more actionBeans I'm going back and adding in a new link to them : is there a way to automate this - considering that the stripes framework (I believe) iterates through all the actionBeans when it loads up - is there a way to ask the framework for this information ?

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

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

发布评论

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

评论(1

凑诗 2024-10-17 07:49:38

ActionResolver 接口有多种可以使用的方法,包括 getActionBeanClasses()

StripesFilter.getConfiguration() 允许您访问配置对象(以及 ActionResolver)以静态的方式。

操作方法如下:

StripesFilter.getConfiguration().getActionResolver().getActionBeanClasses()

The ActionResolver interface has several methods you could use, including getActionBeanClasses()

StripesFilter.getConfiguration() lets you access the configuration object (and hence the ActionResolver) in a static way.

Here's how to do it:

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