我正在做一个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>上面的脚本下载该文件,并针对config.resources在mule-deploy.properties中创建一个条目。我已经设置了redeployment.enabled=true,但终结点仍然不可用,请帮助
发布于 2016-04-22 22:43:40
重新部署在mule-deploy.properties上不起作用,我对此报告了here。
https://stackoverflow.com/questions/36787193
复制相似问题