RAML:包括示例XML

时间:2015-05-27 03:05:49

标签: json xml rest dropwizard raml

我有以下RAML代码段:

/myendpoint:
 post:
 description: Blah
 body:
  application/json:
   example: !include myendpoint_request.json
 responses:
  200:
   description: Blah
   body:
    application/xml:
        example: !include myendpoint_response.xml

我的问题是生成的HTML显示< code>中包含的 myendpoint_response.xml 。阻止,并解释为XML内容(甚至不可见),而不是 myendpoint_response.json 的内容被渲染为漂亮的< pre>块。

如何将我的XML文件包含为漂亮的XML?

我使用以下库:

  • org.raml:RAML的解析器:0.8.10
  • net.ozwolf:dropwizard-RAML视图:3.0.3
  • Java 8
  • Groovy 3.1.30

0 个答案:

没有答案