Annotation Interface EnableSpringConfigured
@Target(TYPE)
@Retention(RUNTIME)
@Documented
@Import(SpringConfiguredConfiguration.class)
public @interface EnableSpringConfigured
Signals the current application context to apply dependency injection to
 non-managed classes that are instantiated outside the Spring bean factory
 (typically classes annotated with the
 
@Configurable
 annotation).
 Similar to functionality found in Spring's
 <context:spring-configured> XML element. Often used in conjunction with
 @EnableLoadTimeWeaving.
- Since:
 - 3.1
 - Author:
 - Chris Beams
 - See Also: