I want to list all managed beans which are registered in an ADF application.
I am using the approach from http://www.gregbugaj.com/?p=126. This is the code I have - dumpBeanRegistry_action is attached to an <af:commandButton> so that it can be called from a JSF page:
package com.example;
import com.sun.faces.application.ApplicationAssociate;
import com.sun.faces.mgbean.BeanBuilder;
import com.sun.faces.mgbean.BeanManager;
import java.util.Map;
import javax.faces.context.FacesContext;
public class BeanLister {
public String dumpBeanRegistry_action() {
String result = "";
ApplicationAssociate applicationAssociate = ApplicationAssociate.getInstance(
FacesContext.getCurrentInstance().getExternalContext());
BeanManager bm = applicationAssociate.getBeanManager();
Map<String, BeanBuilder> beans = bm.getRegisteredBeans();
for (Map.Entry<String, BeanBuilder> entry : beans.entrySet()) {
String name = entry.getKey();
result = result + name + "\n";
}
System.err.println(result);
return null;
}
}
However, this code only lists the beans which are registered in faces-config.xml, not those registered in adfc-config.xml. I am using the adfc controller.
How can I include the managed beans which are registered in adfc-config.xml (without parsing the file - for debugging purposes, I would like to have access to the real list at runtime)?