Struts2>标签,用于实例化参数化 Bean

发布于 2024-08-25 16:29:44 字数 362 浏览 6 评论 0原文

在查看了其他谷歌和网络后,我决定在这里发布我的问题。

问题非常基本且简单:

如何使用 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 技术交流群。

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

发布评论

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

评论(1

望她远 2024-09-01 16:29:44

我可以这样写:

<s:bean name="GenericBean" var="myBean"/>

唯一的事情是在 GenericBean方法 中,我需要 的类型,“调用者” 应该为 提供相应的类。

I can write this :

<s:bean name="GenericBean" var="myBean"/>

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 .

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