Mule ESB Bean属性“enableNotifications”不可写

时间:2018-02-22 09:37:34

标签: properties mule javabeans esb

我正在使用Mule ESB 3.8.2,我收到此错误,我在Anypoint Studio之外搞砸了。 Bean属性“enableNotifications”不可写或具有无效的setter方法。 setter的参数类型是否与getter的返回类型匹配? 有人建议可能是什么?

1 个答案:

答案 0 :(得分:0)

经过几个小时处理这个问题后,我找到了解决方案。 我们必须在插件上的文件pom.xml

<inclusion>
                        <groupId>org.mule.modules</groupId>
                        <artifactId>mule-module-apikit</artifactId>
                    </inclusion>

并且依赖项必须是我们正在处理它的mule版本。

<dependency>
        <groupId>org.mule.modules</groupId>
        <artifactId>mule-module-apikit</artifactId>`enter code here`
        <version>${mule.version}</version>
    </dependency>

我希望这对某人有用。