有没有办法将文件添加到 tomcat 服务器上部署的 Web 应用程序

发布于 2024-12-11 20:12:55 字数 259 浏览 0 评论 0 原文

我正在开发一个 jsf2 Web 应用程序,我需要将文件上传到我的 webcontent 中的文件夹并永久保留它们,我使用了 JSF FileUpload Directory 我可以上传到 wtp... 文件夹的子文件夹,但正如 BlueC 所说,当 tomcat 重新启动时它会丢失,有什么办法可以做到 那?

I'm working on a jsf2 web application and i need to upload files to a folder in my webcontent and keep them permanently, I used the technique that is mentioned in JSF FileUpload Directory and i could upload to wtp... folder's subfolder, but as BlueC said it get lost when tomcat restarts, is there any way to do that?

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

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

发布评论

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

评论(2

二货你真萌 2024-12-18 20:12:56

您可以使用 BLOB 字段将文件存储在数据库中。这取决于您如何实现应用程序的持久层,但在 Java 端通常您会将此字段实现为 byte[]。因此下载或显示文件会很舒服。

You can store the files in a Database using a BLOB field. It will depends of how you are implementing the persistence layer of your application but in the Java side usually you will implement this field as byte[]. So it will be comfortable for download or display the file.

走走停停 2024-12-18 20:12:56

您可以将文件上传到某个目录/默认目录,然后手动将文件复制到部署目录和应用程序服务器安装之外的安全文件夹(是的,您可以这样做)。

You can upload the files to a certain directory/ default directory and then manually copy the files to a secured folder that is outside of the deployment directory and application server installation (yes you can do that).

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