YAML / SnakeYAML:如何多次引用同一对象
我正在使用 YAML 将数据导入 db4o 数据库,并且想知道如何构建我的文档,以便在创建对象时,我可以稍后在另一个对象中重复使用同一对象。例如,我声明一个内容类型,然后声明一个使用该内容类型的文件。
我如何引用该内容类型?
沃尔特
I am using YAML to import data into a db4o database and am wondering how I can structure my documents such that when I create an object, I can re-use that same object later on in another object. For instance, I declare a content type, and then a file after it that uses that content type.
How do I refer to that content type?
Walter
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 YAML,您可以表示任意图形结构的对象。如果您想从文档的不同部分引用同一对象,则需要使用锚点和别名
http://code.google.com/p/snakeyaml/wiki/Documentation#Aliases
Using YAML you may represent objects of arbitrary graph-like structures. If you want to refer to the same object from different parts of a document, you need to use anchors and aliases
http://code.google.com/p/snakeyaml/wiki/Documentation#Aliases