无法从 APIKit 中的 RAML 生成流

Can't generate flows from RAML in APIKit

我遇到了此处提到的相同问题,但没有找到答案。 https://forums.mulesoft.com/questions/25918/mule-flow-is-not-generated-using-apikitraml.html

基本上我有这个简单的 RAML 文件,我正在尝试用它创建一个新的 APIKit 项目。我以前成功使用过这个 RAML,但现在当我尝试 Anypoint Studio 时会生成一个空的配置文件。 Mule 论坛上的发帖人说这在 6.0 beta 中已修复,但我不能使用该版本并且感觉必须有一个修复程序,因为它以前可以工作。有什么想法吗?

%RAML 0.8
 title: WorldGreetings
 version: 1.0.0.0
 baseUri: http://localhost:8081/world

 /hello:
   get:
     description: Returns all care types.  Sorted by "rank" field in CRM.
     responses:
       200:
         body:
           text/plain:
             example: Hello World!
 /goodbye:
   get:
     description: Returns all amenities.  Sorted by name.
     responses:
       200:
         body:
           text/plain:
             example: Goodbye World!

我的问题是 Anypoint 的路径名太长。如果我尝试重新安装,我会收到一条关于 APIKit 文件路径太长且不会被复制的警告。我重新安装到 C:\a 现在一切正常。