保存文件下载代码的理想位置是什么?

发布于 2024-11-09 18:32:41 字数 133 浏览 0 评论 0原文

我有一个struts1应用程序。它支持下载到Excel。我有 Dao 层,它为我提供数据。我有服务层,然后是操作(模型)。

我应该在哪里保存文件创建代码..?在行动或服务中?或 shd 我有 util (util 创建了非常糟糕的代码)

I have a struts1 application. It supports download-to-excel. I have Dao layer which gives me data. I have service layer and then actions (model).

Where should i keep file creation code..? in action or service ? or shd i have util (util creates really bad code)

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

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

发布评论

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

评论(1

入画浅相思 2024-11-16 18:32:41

要启动 Excel 文件的下载,请创建一个 Struts 可以启动的操作,但让服务调用 DAO 并检索文件数据并将文件数据返回给该操作。

这样,如果您更改 MVC 或需要添加其他 SOA(例如 RESTful 或 WS),那么服务将始终返回文件数据。

To kickstart the download of the excel file, creating an action that Struts can kick from but let the service call the DAO and retrieve the file data and return the file data back to the action.

That way, if you change MVC or need to add other SOA, like RESTful or WS, then the service will always return the file data.

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