1

查看日志,Mule 似乎总是以开发模式启动,

如何将其切换为生产?

**********************************************************************
* Mule ESB and Integration Platform *
* Version: 3.1.0 Build: 20848 *
* MuleSoft, Inc. *
* For more information go to http://www.mulesoft.org *
* *
* Server started: 5/24/11 10:45 AM *
* Server ID: 7159b2cb-85ea-11e0-b218-8777a961ba72 *
* JDK: 1.6.0_23 (mixed mode) *
* OS encoding: UTF-8, Mule encoding: UTF-8 *
* OS: Linux (2.6.18-238.el5, amd64) *
* Host: JAVVM17 (127.0.0.1) *
* Mode: Development *
* *
* Agents Running: *
* JMX Agent *
********************************************************************** 

编辑

我发现该设置来自 org.mule.util.ServerStartupSplashScreen

    // Dev/Production mode
    final boolean productionMode = StartupContext.get().getStartupOptions().containsKey("production");
    header.add("Mode: " + (productionMode ? "Production" : "Development"));

这是在 MuleContainer 和 MuleServer init 方法中设置的,但我们不使用它们,因为我们是从 Tomcat 中的 servlet 侦听器启动 mule

我找不到任何真正的用途。骡子会用这个标志做些什么吗?

4

1 回答 1

0

安德鲁 Perepelytsya 2011 年 5 月 27 日;4:15pm Re: Mule ESB 开发生产模式 回复 | 螺纹 | 更多 [点击查看更多选项] 明星 Andrew Perepelytsya 7502 个帖子

嗨,鲍里斯,

这是一个遗留代码,目前它不会影响事物。我现在能想到的 Mule 3 中它的唯一潜在用途是禁用热部署。

安德鲁

http://mule.1045714.n5.nabble.com/template/NamlServlet.jtp?macro=user_nodes&user=103667

于 2011-05-30T07:24:10.177 回答