Spring アプリケーション コンテキストで MBeanServerConnection を動的に定義したいので、prepareBeanFactory() を介してそのファクトリを登録しています。Bean がコンテキストに存在することがわかりますが、getBean() を実行すると、null が返されます。
助言がありますか?
public static void main(String[] args) throws IOException, Exception, IntrospectionException, MalformedObjectNameException, ReflectionException {
final AbstractApplicationContext context = new ClassPathXmlApplicationContext() {
protected void prepareBeanFactory(ConfigurableListableBeanFactory beanFactory) {
super.prepareBeanFactory(beanFactory);
final MBeanServerConnectionFactoryBean clientConnection = new MBeanServerConnectionFactoryBean();
try {
clientConnection.setServiceUrl("service:jmx:jmxmp://" + "localhost:7777");
beanFactory.registerSingleton("clientConn", clientConnection);
} catch (MalformedURLException e) {
}
}
};
context.refresh();
for (String name : context.getBeanNamesForType(Object.class)) {
System.out.println(name);
}
MBeanServerConnection mb = context.getBean("clientConn", MBeanServerConnection.class);
for (String s : mb.getDomains()) {
System.out.println(s);
}
}