Spring 的 JMX 配置 (Hibernate &amp; Ehcache 统计),jmxhibernate,xml代码<?xml v
分享于 点击 42268 次 点评:190
Spring 的 JMX 配置 (Hibernate & Ehcache 统计),jmxhibernate,xml代码
xml代码
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> <context:mbean-server /> <bean id="mbeanExporter" class="org.springframework.jmx.export.MBeanExporter"> <property name="beans"> <map> <entry key="SpringBeans:name=hibernateStatisticsMBean" value-ref="hibernateStatisticsMBean" /> <entry key="SpringBeans:name=ehCacheManagerMBean" value-ref="ehCacheManagerMBean" /> </map> </property> </bean> <bean name="hibernateStatisticsMBean" class="org.hibernate.jmx.StatisticsService"> <property name="sessionFactory" ref="sessionFactory" /> </bean> <bean name="ehCacheManagerMBean" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean" /></beans>
用户点评