Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Mule 配置中处理静态/常量值的最佳方法是什么?我有许多使用需要一些静态值的表达式的流程。我正在考虑创建一个简单的 Java 类来保存这些并使用 MEL 来访问它们。但是有没有更好的方法,可能只使用 Mule 配置?也许每次都为这些值设置 flowVars 或使用弹簧属性占位符?
将这些值存储在属性文件中,并将它们与${ }表达式中的占位符一起使用。
${ }
@jonlee 我会使用弹簧属性占位符。这 是参考文档