是否可以在 YAML 定义中分配 JSON 值?
对于我的域对象,我希望能够在使用 yaml(更具体地说是 Snakeyaml)时将 JSON 文字分配给键。这是我可以使用的:
ContentType(teaser):
name: teaser
json: { "foo": "bar", \
"acme": "co..." } \
这是否可能,以及如何实现?
PS:对于上面的示例,Snakeyaml(在 Play! Framework 测试用例中使用)的答案是 YAMLException已被捕获,null;此处不允许映射值
For my domain object I would like to be able to assign a JSON literal to a key when using yaml, more specifically snakeyaml. Here is what I would be able to use:
ContentType(teaser):
name: teaser
json: { "foo": "bar", \
"acme": "co..." } \
Is this possible at all, and how?
PS: For the example above Snakeyaml (used inside Play! Framework test case) answers with
YAMLException has been caught, null; mapping values are not allowed here
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Map Ask。
您的“json”属性必须是提供测试用例的 SnakeYAML 邮件列表中的
Your 'json' property must be a Map
Ask in the SnakeYAML mailing list providing a test case.