Heroku和骡子

时间:2012-10-04 17:22:47

标签: java heroku mule

我有一个我要部署到Heroku的mule应用程序。有没有人向Heroku部署了Mule 3应用程序。任何指针都会有所帮助。

1 个答案:

答案 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中找到实际部署打包应用程序的灵感。