0
我正在開發一個mule項目,其中所有配置都存儲在中央存儲庫中,並且在運行時下載配置並進行部署。Mule熱部署
<script:component doc:name="Script">
<script:script engine="groovy">
<![CDATA[
String endpnt = reqUrl.prepareFile(requestUrl);
message.setProperty('endpnt', endpnt,org.mule.api.transport.PropertyScope.INVOCATION);
message.setProperty('port', reqUrl.getPort(),org.mule.api.transport.PropertyScope.INVOCATION);
]]>
</script:script>
</script:component>
上述腳本下載文件,並使得mule-deploy.properties
對config.resources
的條目。我已經設置了redeployment.enabled=true
,但端點仍然不可用,請幫助
熱重裝對於mulesoft中的.properties,.resources和.java類文件不起作用。 – Thirumal