0

我喜欢查看休眠统计信息,但找不到它们。

我必须在哪里搜索?

@Bean
@Lazy
public MBeanExporter getExporter() {
    MBeanExporter exporter = new MBeanExporter();
    exporter.setServer(mBeanFactory());
    exporter.setRegistrationBehavior(MBeanExporter.REGISTRATION_REPLACE_EXISTING);
    HashMap beans = new HashMap();
    beans.put("hibernate:name=statistics", hibernateStatistics());
    exporter.setBeans(beans);
    return exporter;
}

在此处输入图像描述

4

1 回答 1

0

好的,jmxbean 应该在 root 上。

我确实将 hibernateStatistics()-Bean 标记为 @DependsOn("hibernate")。

在此处输入图像描述

于 2013-03-21T10:05:11.733 回答