标签: java spring enums jmx jconsole
我正在尝试在将枚举作为参数的方法上使用org.springframework.jmx.export.annotation.ManagedOperation注释。
org.springframework.jmx.export.annotation.ManagedOperation
但是,当我通过Jconsole访问上述应用程序时,我得到: “错误设置操作面板...”
这不可能吗?为什么它至少不将String作为枚举的输入?
即
@ManagedOperation public void doStuff(String id, MyEnum myEnum) { ... }