保存文件下载代码的理想位置是什么?
我有一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要启动 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.