BeanDefinitions return isSingleton()=true by default again (for CXF compatibility)

This commit is contained in:
Juergen Hoeller 2009-11-19 16:40:06 +00:00
parent a741410421
commit ee5330801d
1 changed files with 2 additions and 1 deletions

View File

@ -120,7 +120,7 @@ public abstract class AbstractBeanDefinition extends BeanMetadataAttributeAccess
private String scope;
private boolean singleton = false;
private boolean singleton = true;
private boolean prototype = false;
@ -171,6 +171,7 @@ public abstract class AbstractBeanDefinition extends BeanMetadataAttributeAccess
private Resource resource;
/**
* Create a new AbstractBeanDefinition with default settings.
*/