我有一个实体树,它是由休眠获取的,我想从实体树生成 xml。在这棵树中,有许多 blob 和 clob 数据类型。我不想将它们包含在 xml 中,而是想在 xml 中保留一个参考 ID。blob 和 clob 数据将存储在我放置 xml 的同一目录中的文件系统中。
生成 xml 格式示例-
<Address type="varchar" maxLength=”100”>
Los Angeles, CA 90067-6209, USA
</Address>
<Biography type="clob">
<!-- this clob data would be available in the same directory of this xml as a text file. Name format- [row_id]_biography -->
<ref id="44238185_biography"/>
</Biography>
<Image type="blob">
<!-- this blob data would be available in the same directory of this xml as a image file. Name format- [row_id]_image -->
<ref id="44238185_image"/>
</Image>
<DateCreated type="timestamp" format="yyyy-mm-dd hr:mm:ss">
18-04-13 05:12:34
</DateCreated>
我想知道你们是怎么看待这件事的。