Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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)?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.