There seems to be some places where a bean must have a specific id. From what I understand...you must have a bean with the id of quot;messageSourcequot; to get some resource bundles to work. Are there any other places where the bean id must have a specific id and if so, then where can I find these values?
thanks,
Mike
Take a loot at Constant Field Values.
Try searching for messageSource.
Interesting. Looks exactly like what I'm looking for, but I'm not exactly sure what I'm reading. There is a three column table for each class (type, name, ?). What exactly does the 3rd column represent?
thanks a bunch,
Mike
I'm not exactly sure what I'm reading
These are the magic strings you're are after.
What exactly does the 3rd column represent?
The string literal. For example, from your original query:
org..context.support.AbstractApplic ationContext.MESSAGE_SOURCE_BEAN_NAME=quot;messageSour cequot;
To answer your original post, to find beans with a required (or default name) you can search for _BEAN_NAME, which seems to be the naming convention for bean names. |