我无法通过 JConsole 修改我的 MBean 属性。我有一个 Threading bean,它通过以下方式调用:
public static void main(String[] args) throws Exception {
// JMX
new SimpleJmxAgent();
// spring executor context
ApplicationContext ctx = new FileSystemXmlApplicationContext(
"src/resources/ThreadContent.xml");
startThreads(ctx);
}
private static void startThreads(ApplicationContext ctx) {
TaskExecutor tE = (TaskExecutor) ctx.getBean("TaskExecutor");
System.out.println("Starting threads");
for (int i = 0; i < 10; i++) {
tE.execute(new RepeatingGrpPoC());
}
ThreadContent.xml 包含所有默认属性值。
SimpleJmxAgent 看起来像:
public SimpleJmxAgent() {
mbs = ManagementFactory.getPlatformMBeanServer();
// Spring context - used to load MBeans
XmlBeanFactory factory = new XmlBeanFactory(new ClassPathResource(
"resources/JMXcontent.xml"));
// Unique identification of MBeans
ThreadPoolManager threadBean = (ThreadPoolManager) factory.getBean("ThreadPoolBean");
ObjectName threadName = null;
try {
// Uniquely identify the MBeans and register them with the platform MBeanServer
threadName = new ObjectName("THREADING:name=ThreadBean");
mbs.registerMBean(threadBean, threadName);
} catch(Exception e) {
e.printStackTrace();
}
我有 ThreadPoolManager 从 ThreadPoolTaskExecutor 继承,以便让它访问 Thread 属性的 getter 和 setter 方法,例如:
public void setCorePoolSize(int corePoolSize)
编辑:
我已经实现了使用:
public void setCorePoolSize(int corePoolSize){
super.setCorePoolSize(corePoolSize);
}
包裹在一个:
public void changeCorePoolSize(int x){
setCorePoolSize(x);
}
所以现在 Operation 出现在 MBeans 选项卡中。但是,属性显示为与所使用的值不同的值。我已经在我的 ThreadContext.xml
property name="corePoolSize" value="5"
但是,当查看属性设置为默认值 1 时。我可以通过changeCorePoolSize
操作通过 Jconsole 更改它,但只有外观效果会更改显示的值,但不会更改仍然有 5 个TaskExecutor
线程仍在运行的正在进行的进程。
我在做的事情中错过了什么吗?什么可能导致我通过 ThreadContext.xml 设置的属性与在 Jconsole 的属性中显示的属性之间断开连接?