|
Spring Framework example source code file (methodExclusionAssembler.xml)
The Spring Framework methodExclusionAssembler.xml source code<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans-2.0.dtd"> <beans> <bean class="org.springframework.jmx.export.MBeanExporter" autowire="byName"> <property name="beans"> <map> <entry key="bean:name=testBean5" value-ref="testBean"/> </map> </property> <property name="assembler"> <bean class="org.springframework.jmx.export.assembler.MethodExclusionMBeanInfoAssembler"> <property name="ignoredMethods" value="dontExposeMe,setSuperman"/> <property name="notificationInfos"> <bean class="org.springframework.jmx.export.metadata.ManagedNotification"> <property name="name" value="My Notification"/> <property name="description" value="A Notification"/> <property name="notificationTypes" value="type.foo,type.bar"/> </bean> </property> </bean> </property> </bean> <bean id="testBean" class="org.springframework.jmx.JmxTestBean"> <property name="name" value="TEST"/> <property name="age" value="100"/> </bean> </beans> Other Spring Framework examples (source code examples)Here is a short list of links related to this Spring Framework methodExclusionAssembler.xml source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.