Return to Snippet

Revision: 33551
at October 10, 2010 05:56 by hkarakose


Initial Code
<?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>

Initial URL


Initial Description


Initial Title
Spring JMX sample configuration for Hibernate & Ehcache statistics

Initial Tags


Initial Language
Java