有没有办法将文件添加到 tomcat 服务器上部署的 Web 应用程序
我正在开发一个 jsf2 Web 应用程序,我需要将文件上传到我的 webcontent 中的文件夹并永久保留它们,我使用了 JSF FileUpload Directory 我可以上传到 wtp... 文件夹的子文件夹,但正如 BlueC 所说,当 tomcat 重新启动时它会丢失,有什么办法可以做到 那?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 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.
您可以将文件上传到某个目录/默认目录,然后手动将文件复制到部署目录和应用程序服务器安装之外的安全文件夹(是的,您可以这样做)。
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).