顶联 java存储word或pdf文件
我正在使用表单创建一个简单的页面。 部分表格需要上传 pdf 或 word 文档。 这将是一个小文件,因此理想情况下我希望将其存储在我的 Oracle 数据库中。
我一直在使用 ejb 和 toplink。 我的实体类应该有什么对象来保存 word 或 pdf 文件,以及如何将其映射到 toplink?
I'm creating a simple page with a form. Part of the form requires uploading a pdf or word document. This will be a small file, so ideally I would like to store it in my oracle database.
I'm using ejb and toplink for all of my persistence. What object should my entity class have that will hold a word or pdf file, and how do I map it to toplink?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅可以通过顶部链接映射 BLOB 数据。 就您的实体应使用的类型而言,它显然是
byte[]
或可序列化类型。See Can toplink map BLOB data. In terms of what type your entity should use, it's either
byte[]
or a serializable type apparently.