我使用单个GET创建了一个简单的API RAML文件,不需要参数,并返回一个简单的有效负载。我将这个项目正确地推送到我的项目中的Anypoint Studio(上周最新)并在本地创建并运行项目。我有一个mule运行时内部3.8.3,我已经存档并成功部署了它。我可以在/ apps目录中看到正确的.txt文件,我在Mule Mgmt Console中看到它作为我服务器上的已部署应用程序。我似乎无法正确称呼它?你可以在mule运行时使用已部署的APIKit项目吗?我的简单设置在下面并且在运行和调试模式下在Anypoint工作室中工作(当然)。
我打电话给http://localhost:8081/api/testthis作为我的网址很好但是当我去我的mulesoft服务器部署它并调用该IP http://x.x.x.x:8081/api/testthis以获得有效负载时,它显示没有监听器。我必须错过一个步骤或配置或其他东西,我似乎无法搜索他们的DOC或SO网站来找到问题。
感谢任何帮助(即使是讽刺!)。
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:apikit="http://www.mulesoft.org/schema/mule/apikit" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:spring="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mulesoft.org/schema/mule/core
http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http
http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/apikit
http://www.mulesoft.org/schema/mule/apikit/current/mule-apikit.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd">
<http:listener-config name="testapi-httpListenerConfig" host="0.0.0.0" port="8081" doc:name="HTTP Listener Configuration"/>
<apikit:config name="testapi-config" raml="testapi.raml" consoleEnabled="false" doc:name="Router"/>
<flow name="testapi-main">
<http:listener config-ref="testapi-httpListenerConfig" path="/api/*" doc:name="HTTP"/>
<apikit:router config-ref="testapi-config" doc:name="APIkit Router"/>
<exception-strategy ref="testapi-apiKitGlobalExceptionMapping" doc:name="Reference Exception Strategy"/>
</flow>
<flow name="testapi-console">
<http:listener config-ref="testapi-httpListenerConfig" path="/console/*" doc:name="HTTP"/>
<apikit:console config-ref="testapi-config" doc:name="APIkit Console"/>
</flow>
<flow name="get:/testthis:testapi-config">
<set-payload value="[ {"code": "MyCode1", "name" : "My Code 1", "ID" : "1111" }, {"code": "MyCode2", "name" : "My Code 2", "ID" : "2222" } ]" doc:name="Set Payload"/>
</flow>
<apikit:mapping-exception-strategy name="testapi-apiKitGlobalExceptionMapping">
<apikit:mapping statusCode="404">
<apikit:exception value="org.mule.module.apikit.exception.NotFoundException" />
<set-property propertyName="Content-Type" value="application/json" doc:name="Property"/>
<set-payload value="{ "message": "Resource not found" }" doc:name="Set Payload"/>
</apikit:mapping>
<apikit:mapping statusCode="405">
<apikit:exception value="org.mule.module.apikit.exception.MethodNotAllowedException" />
<set-property propertyName="Content-Type" value="application/json" doc:name="Property"/>
<set-payload value="{ "message": "Method not allowed" }" doc:name="Set Payload"/>
</apikit:mapping>
<apikit:mapping statusCode="415">
<apikit:exception value="org.mule.module.apikit.exception.UnsupportedMediaTypeException" />
<set-property propertyName="Content-Type" value="application/json" doc:name="Property"/>
<set-payload value="{ "message": "Unsupported media type" }" doc:name="Set Payload"/>
</apikit:mapping>
<apikit:mapping statusCode="406">
<apikit:exception value="org.mule.module.apikit.exception.NotAcceptableException" />
<set-property propertyName="Content-Type" value="application/json" doc:name="Property"/>
<set-payload value="{ "message": "Not acceptable" }" doc:name="Set Payload"/>
</apikit:mapping>
<apikit:mapping statusCode="400">
<apikit:exception value="org.mule.module.apikit.exception.BadRequestException" />
<set-property propertyName="Content-Type" value="application/json" doc:name="Property"/>
<set-payload value="{ "message": "Bad request" }" doc:name="Set Payload"/>
</apikit:mapping>
</apikit:mapping-exception-strategy>
</mule>
我用来创建项目的RAML:
#%RAML 0.8
title: mmctest
version: 1.0
/testthis:
get:
queryParameters:
code:
displayName: "Code"
type: string
description: "The code to pass through on a querystring"
required: false
responses:
200:
body:
application/json:
example: |
[ {"code": "MyCode1", "name" : "My Code 1", "ID" : "1111" }, {"code": "MyCode2", "name" : "My Code 2", "ID" : "2222" } ]
答案 0 :(得分:0)
我的设置有两个问题。所以我向Anirban道歉,因为我把时间带走了。
当我正确地做到这一点时,一切都很好。所以我需要注意这一点,并确保我在未使用的有效端口上正确部署。