Struts2>标签,用于实例化参数化 Bean
在查看了其他谷歌和网络后,我决定在这里发布我的问题。
问题非常基本且简单:
如何使用 struts2 标签
来实例化参数化 Bean?
例如,假设我有:
public class GenericBean
我如何使用 BeanType
实例化这个 bean,例如,在使用 struts 2 的 jsp 中?
谢谢。
After looking a while other google, and the web, I decided to post my question here.
The question is quite really basic, and simple :
How do I use the struts2 tag <s:bean ... />
to instanciate a Parametric Bean ?
For example imagine I have :
public class GenericBean<T> {
...
How will I instanciate this bean with a BeanType
for instance, inside a jsp using struts 2 ?
<s:bean name="GenericBean" var="myBean"/>
Thanks you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我可以这样写:
唯一的事情是在 GenericBean 的 方法 中,我需要 的类型,“调用者” 应该为 提供相应的类。
I can write this :
And the only thing is that in the methods of GenericBean where I need the Type of , the "invoker" should provide the corresponding class for .