Hello, I have been experimenting with the JarScanFilter setting to boost the application deployment time.
<JarScanner scanClassPath="true" scanBootstrapClassPath="true"> <JarScanFilter pluggabilitySkip="*.jar" tldSkip="*.jar" defaultTldScan="false" /> </JarScanner> When I add this: JarScanFilter pluggabilitySkip="*.jar" The JMX calls stopped working. E.g. I am seeing: javax.management.InstanceNotFoundException: Catalina_Web_Services:j2eeType=WebModule,name=//localhost/mywebapp,J2EEApplication=none,J2EEServer=none at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(Unknown Source) ~[?:?] at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(Unknown Source) ~[?:?] at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(Unknown Source) ~[?:?] at com.myapp.findMBeanState(MyTest.java:124) ~[myapp.jar:?] Am I missing some additional configuration? Appreciate the help. Thanks, Amit