Created
November 24, 2012 08:43
-
-
Save jasoet/4138916 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Hibernate Statistics Monitoring --> | |
<!-- Publishing session factory to be able view statistics --> | |
<bean id="sessionFactory" factory-bean="entityManagerFactory" | |
factory-method="getSessionFactory" /> | |
<bean id="hibernateStatisticsMBean" class="org.hibernate.jmx.StatisticsService"> | |
<property name="sessionFactory" ref="sessionFactory" /> | |
</bean> | |
<bean id="mbeanExporter" class="org.springframework.jmx.export.MBeanExporter"> | |
<property name="beans"> | |
<map> | |
<entry key="SpringBeans:name=hibernateStatisticsMBean" | |
value-ref="hibernateStatisticsMBean" /> | |
</map> | |
</property> | |
</bean> | |
<context:mbean-server /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment