Mule 我想建立一个连接器来选择文件Html的位置和处理它

Mule 我想建立一个连接器来选择文件Html的位置和处理它,mule,mule-studio,anypoint-studio,Mule,Mule Studio,Anypoint Studio,在AnypointStudio中,我想为打开的html登录文件构建一个连接器。 作为img 请帮帮我。谢谢大家//请尝试下面的代码- //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"

在AnypointStudio中,我想为打开的html登录文件构建一个连接器。 作为img

请帮帮我。谢谢大家

//请尝试下面的代码- //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>