I'm using JSF 1.1. I have the following in my faces-config.xml file:
<managed-bean>
<managed-bean-name>beanInstance1</managed-bean-name>
<managed-bean-class>com.paquete.BeanMyBean</managed-bean-class>
<managed-bean-scope>request</managed-bean-scope>
</managed-bean>
I want get the managed bean name beanInstance1 inside my bean. This is my bean:
package com.paquete;
public class BeanMyBean {
String atribute1;
public BeanMyBean () {
System.out.println("managed-bean-class="+this.getClass().getName());
System.out.println("managed-bean-name="+????????????????????????);
// How Can I get the "beanInstance1" literal from here??
}
// setters and getters
}
I know how get the com.paquete.BeanMyBean literal (this.getClass().getName()) and the BeanMyBean (this.getClass().getSimpleName()), but I don't know how get a Managed Name (instance of Bean).
How can I get the beanInstance1 value?