+ Eliminated .util package

+ Renamed DefaultScopes -> Scopes
+ Renamed MalformedJavaConfigurationException -> MalformedConfigurationException
This commit is contained in:
Chris Beams
2009-02-28 04:55:04 +00:00
parent f43e1110e9
commit c0c8117d51
7 changed files with 25 additions and 20 deletions

View File

@@ -10,9 +10,9 @@ import org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostP
import org.springframework.beans.factory.config.BeanDefinition;
import org.springframework.beans.factory.support.DefaultListableBeanFactory;
import org.springframework.config.java.Configuration;
import org.springframework.config.java.Scopes;
import org.springframework.config.java.ext.Bean;
import org.springframework.config.java.support.ConfigurationPostProcessor;
import org.springframework.config.java.util.DefaultScopes;
import test.beans.ITestBean;
import test.beans.TestBean;
@@ -89,7 +89,7 @@ public class BasicTests {
return bar;
}
@Bean(scope=DefaultScopes.PROTOTYPE)
@Bean(scope=Scopes.PROTOTYPE)
public TestBean baz() {
return new TestBean("bar");
}