我有一个我要部署到Heroku的mule应用程序。有没有人向Heroku部署了Mule 3应用程序。任何指针都会有所帮助。
答案 0 :(得分:3)
为您的Mule应用程序创建一个简单的bootstrap main:
public class MuleBootstrap
{
public static void main(final String[] args) throws Exception
{
final MuleServer ms = new MuleServer("mule-config.xml");
ms.start(true, true);
}
}
并使用Maven构建和打包它。
在this Heroku tutorial中找到实际部署打包应用程序的灵感。