我们正在使用Mule Server,但此问题通常适用于所有服务器。

在构造函数中,我们有以下名为skipindexing的属性。

if (!Boolean.parseBoolean(System.getProperty("skipIndexing"))) {
            //searchIndexer.doIndexing(propertyIndexing, threadsToLoadObjects, threadsForSubsequentFetching);
         }


每当我需要注释此代码以在服务器上运行时,因为我不知道如何在运行时传递此skipIndexing属性。

有人可以建议如何将此值传递为false吗?

最佳答案

mule/conf/wrapper.conf中设置属性

09-28 01:49