Flex Gateway新着情報
Governance新着情報
Monitoring API ManagerAutodiscovery 要素は Mule 4 のリリース後に更新されています。
API は、名前とバージョンではなく、ID で参照されます。
API をランタイムから作成できなくなりました。
HTTP リスナーと Autodiscovery 要素を備えたシンプルな Mule アプリケーションは次のように定義されます。
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns="http://www.mulesoft.org/schema/mule/core"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:api-platform-gw="http://www.mulesoft.org/schema/mule/api-platform-gw"
xmlns:http="http://www.mulesoft.org/schema/mule/http"
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/api-platform-gw http://www.mulesoft.org/schema/mule/api-platform-gw/current/mule-api-platform-gw.xsd">
<api-platform-gw:api id="apiId" create="true" apiName="name" version="1.0.0" flowRef="flow_api">
<api-platform-gw:description>This is a test API</api-platform-gw:description>
<api-platform-gw:tag>tag1</api-platform-gw:tag>
<api-platform-gw:tag>tag2</api-platform-gw:tag>
</api-platform-gw:api>
<http:listener-config name="httpConfig" host="localhost" port="${port}" />
<flow name="flow_api">
<http:listener config-ref="httpConfig" path="api" />
<logger message="Executing empty" level="INFO"/>
</flow>
</mule>
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns="http://www.mulesoft.org/schema/mule/core"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:http="http://www.mulesoft.org/schema/mule/http"
xmlns:api-gateway="http://www.mulesoft.org/schema/mule/api-gateway"
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/api-gateway http://www.mulesoft.org/schema/mule/api-gateway/current/mule-api-gateway.xsd">
<api-gateway:autodiscovery apiId="1" flowRef="flow_api" />
<http:listener-config name="httpConfig" basePath="api">
<http:listener-connection host="localhost" port="${port}"/>
</http:listener-config>
<flow name="flow_api">
<http:listener config-ref="httpConfig" path="api" />
<logger message="Executing empty" level="INFO"/>
</flow>
</mule>