使用Struts Action设计问题
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于数据来自哪里。通常这是一个数据库。我总是创建服务来进行数据查找,并从操作中调用服务。这些服务调用 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.