Suppose I have a JSF bean with @PostConstruct method.
I would like to know which entity referenced the current bean and caused its initialization.
@PostConstruct
public void init() {
logger.info(... Who initialized me? ...);
}
|
|
|
This information is not available in the JSF context. If you're using Mojarra, you'd need to run the debugger and put a breakpoint on Or if you need this information during runtime for some unobvious reason, then you'd need to let the caller set itself in the setter of the
then you can gather this information in the
|
|||
|
|