Details
Description
Please add a ELResolver that automatically resolves any bean in the Spring BeanFactory in which the ELResolver resides.
Dave Syer added a very good one called StaticELResolver that resolves beans explicitly configured on the <code>map</code> property, and I've simply extended it to preload the map automatically with all known Spring ApplicationContext bean names.
Source is attached. Thanks in advance.
thinking about it a bit more, I realize that the first file attached created an unnecessary class variable. I've inlined it and that code is attached instead. Additionally, I've created another ELResolver which simply does the same thing but only preloads beans assignable to the interface ActivityBehavior. Thanks