我想构建一个连接器来选择位置中的文件Html并进行处理

时间:2017-10-09 09:54:06

标签: mule mule-studio anypoint-studio

在AnypointStudio中,我想构建一个用于打开html登录文件的连接器。 如同img Example mule open html file

请帮帮我。谢谢大家

1 个答案:

答案 0 :(得分:1)

//请尝试以下代码 - //login.html保存在src / main / resources

<http:listener-config name="HTTP_Listener_Configuration" host="0.0.0.0" port="8089" basePath="/loginpage" doc:name="HTTP Listener Configuration"/>
<flow name="GetLoginPageFlow">
    <http:listener config-ref="HTTP_Listener_Configuration" path="/" allowedMethods="GET" doc:name="HTTP"/>
    <parse-template location="login.html" doc:name="Parse Template"/>
</flow>