SPRING JAVACONFIG CHANGELOG =========================== http://springframework.org/javaconfig Changes in version 1.0-m2a (2007-05-10) --------------------------------------- * Fixed (a confusing) documentation typo. The binary code is identical to 1.0-m2 (the reason why the jar have the same name). Changes in version 1.0-m2 (2007-05-08) -------------------------------------- General * added root package org.springframework.config.java * refactored classes and restructured packages * moved unused/incomplete classses and packages to src/test folder Package org.springframework.config.java.annotation * annotation @ExternalBean added to allow injection of an already defined bean * @Bean can forbid the overriding of the resulting bean by other bean definitions. Default is true * @Bean.scope property was changed from the Scope enum (which was removed) to a String to allow custom scopes Package org.springframework.config.java.annotation.aop * added @ScopedProxy annotation, the equivalent of tag Package org.springframework.config.java.naming * the method -> bean name translation is pluggable and used through out the code Package org.springframework.config.java.process * @Bean.metadata is translated into BeanDefinition attribute * process returns the number of bean definitions created based on annotations * ConfigurationProcessor#process() method refactored into #processClass(Class) and #processBean(String) * ConfigurationProcessor constructor has changed requiring only the owning bean factory. The listener registry as well as the naming strategy are optional (defaults are being used in case they aren't specified) * ConfigurationProcessor implements InitializingBean to allow flexible configuration Package org.springframework.config.java.support.cglib * the cglib code has been improved, only one instance callback being used per processor * the backing beanFactory is used for handling bean instances. Scopes are fully supported [SJC-9] Package org.springframework.config.java.util * added new package with two new utility classes: one for pasing the other for specifying Spring 2.0 default scopes Changes in version 1.0-M1 (2006-11-28) -------------------------------------- * Initial release