Stripes 1.5 - 有什么方法可以向系统询问所有 ActionBean 的列表吗?
我正在构建一个应用程序,其中我的默认网页为“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ActionResolver
接口有多种可以使用的方法,包括getActionBeanClasses()
StripesFilter.getConfiguration()
允许您访问配置对象(以及ActionResolver
)以静态的方式。操作方法如下:
The
ActionResolver
interface has several methods you could use, includinggetActionBeanClasses()
StripesFilter.getConfiguration()
lets you access the configuration object (and hence theActionResolver
) in a static way.Here's how to do it: