使用Struts Action设计问题

发布于 2024-10-16 15:27:00 字数 150 浏览 7 评论 0原文

我正在使用 Struts 1。 我有一个操作,当此操作转发到页面时,我希望该页面显示 bean 的属性。 我认为 Action 将生成 bean,它需要从数据库填充信息。 我应该让 Action 直接创建 bean(在execute() 中),还是使用其他类来创建 bean,例如工厂?

I'm using Struts 1.
I have an Action, and when this Action forwards to a page, I want the page to display properties from a bean.
I'm thinking the Action will make the bean, it needs to populate info from a DB.
Should I have the Action make the bean directly (in the execute()), or use some other class to make the bean, like a factory?

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

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

发布评论

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

评论(1

凉月流沐 2024-10-23 15:27:00

这取决于数据来自哪里。通常这是一个数据库。我总是创建服务来进行数据查找,并从操作中调用服务。这些服务调用 DAO(数据访问对象)。服务返回在 jsps 中使用的对象/bean。

it depends where the data is coming from. Typically this is a database. I have always created services to do the data lookups, and invoked the services from the actions. The services invoked DAOs (data access objects). The services return objects/beans that are used in the jsps.

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