调用在没有API网关的Mule 3.8.3运行时上部署的APIKit项目

时间:2017-01-12 15:54:02

标签: mule mule-studio

我使用单个GET创建了一个简单的API RAML文件,不需要参数,并返回一个简单的有效负载。我将这个项目正确地推送到我的项目中的Anypoint Studio(上周最新)并在本地创建并运行项目。我有一个mule运行时内部3.8.3,我已经存档并成功部署了它。我可以在/ apps目录中看到正确的.txt文件,我在Mule Mgmt Console中看到它作为我服务器上的已部署应用程序。我似乎无法正确称呼它?你可以在mule运行时使用已部署的APIKit项目吗?我的简单设置在下面并且在运行和调试模式下在Anypoint工作室中工作(当然)。

enter image description here

我打电话给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="[  {&quot;code&quot;: &quot;MyCode1&quot;, &quot;name&quot; : &quot;My Code 1&quot;, &quot;ID&quot; : &quot;1111&quot;  }, {&quot;code&quot;: &quot;MyCode2&quot;, &quot;name&quot; : &quot;My Code 2&quot;, &quot;ID&quot; : &quot;2222&quot;  } ]" 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="{ &quot;message&quot;: &quot;Resource not found&quot; }" 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="{ &quot;message&quot;: &quot;Method not allowed&quot; }" 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="{ &quot;message&quot;: &quot;Unsupported media type&quot; }" 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="{ &quot;message&quot;: &quot;Not acceptable&quot; }" 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="{ &quot;message&quot;: &quot;Bad request&quot; }" doc:name="Set Payload"/>
    </apikit:mapping>
    </apikit:mapping-exception-strategy>
</mule>

这是它展示部署的地方 zip file deployed under mule apps directory

这就是MMC将其部署到我们的1 dev服务器的方式。 MMC showing deployed application

我用来创建项目的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"  } ]              

我必须部署的mule-config.xml只是一个shell文件。 mule-config.xml file for deployment

1 个答案:

答案 0 :(得分:0)

我的设置有两个问题。所以我向Anirban道歉,因为我把时间带走了。

  1. 我已经在8081端口上安装了另一个应用程序。所以我不得不将我的端口更改为8080。
  2. 我没有正确归档我的项目进行部署,所以我解决了这个问题。出口到骡子&gt; Anypoint Studio Project to Mule Deployable Archive
  3. 当我正确地做到这一点时,一切都很好。所以我需要注意这一点,并确保我在未使用的有效端口上正确部署。