Sam Brannen
81649d5c3b
Removed unused import.
15 years ago
Costin Leau
0fd4a45070
+ upgrade to AspectJ 1.6.8
...
+ externalize some of the jar versions
+ align the versions of some dependencies between pom.xml and ivy.xml
15 years ago
Juergen Hoeller
e3cdabfaac
fixed MBeanExporter regression: do not try to expose abstract beans (SPR-6784)
15 years ago
Juergen Hoeller
1dbb64580c
throw NotSerializableException if no serialization id is available
15 years ago
Juergen Hoeller
5f5e7c3262
polishing
15 years ago
Juergen Hoeller
b53ccb3807
widened FactoryBean's "getObjectType" signature to return any Class<?> (SPR-6692)
15 years ago
Juergen Hoeller
8ab9da4461
introduced BeanDefinitionRegistryPostProcessor extension to BeanFactoryPostProcessor; @Configuration classes support definition of BeanFactoryPostProcessor beans as well (SPR-6455, SPR-6611)
15 years ago
Costin Leau
1bbe93e535
SPR-3709
...
+ improved example to work with multi-nested declarations
+ used JDK 5 syntax
+ added documentation code into trunk (including unit test) for easier future reference
15 years ago
Juergen Hoeller
0f75210408
changed exception wording from "recursive" to "cyclic" (SPR-6755)
15 years ago
Juergen Hoeller
081d81e5b0
fixed getPropertyTypeDescriptor to work for nested indexed property as well as for array property (SPR-6710)
15 years ago
Juergen Hoeller
5abd3b99b9
fixed getPropertyTypeDescriptor to work for nested indexed property as well (SPR-6710)
15 years ago
Juergen Hoeller
8bf2e2459e
added default PropertyEditor for java.util.UUID (SPR-6696)
15 years ago
Juergen Hoeller
45448463b8
collect exceptions across all constructors that have been tried (SPR-6720)
15 years ago
Juergen Hoeller
95c695eb2f
fixed BeanPostProcessor invocation for null bean (SPR-6700)
15 years ago
David Syer
b077d5ba97
SPR-6678: fix poms for 3.0.1
15 years ago
Juergen Hoeller
bddb38d787
fixed getBeansWithAnnotation to ignore beans with non-determinable type (SPR-6579)
15 years ago
Juergen Hoeller
dc99df2972
use TypeDescriptor.forObject instead of constructor; enforce use of TypeDescriptor.valueOf through making the constructor private
15 years ago
Juergen Hoeller
1c33206042
catch ConversionException and ConvertedNotFoundException in BeanWrapper's convertIfNecessary as well, in order to support constructor resolution (SPR-6563)
15 years ago
Juergen Hoeller
2153b2fbd5
introspect element type in case of incoming Collection/Map in order to not accidentally say canConvert=true (SPR-6564)
15 years ago
Juergen Hoeller
d7a1630381
removed getBeansWithAnnotation(Class,boolean,boolean) method from ListableBeanFactory; reimplemented getBeansWithAnnotation(Class) to avoid use of getBeanNamesForType(Object.class)
15 years ago
Juergen Hoeller
929665d284
fixed accidental breakage in bean class resolution with tempClassLoader
15 years ago
Juergen Hoeller
35354ad520
polishing
15 years ago
Juergen Hoeller
5f9b444319
bean properties of type enum array/collection can be populated with comma-separated String (SPR-6547)
15 years ago
Juergen Hoeller
ad29a2376d
PropertyPlaceholderConfigurer is compatible with Spring 2.5 extensions such as GigaSpaces again (SPR-6514)
15 years ago
Juergen Hoeller
61f23710eb
relaxed warning about ambiguous setters to only be logged in case of actual write access (SPR-6399)
15 years ago
Juergen Hoeller
09a55c8ede
import works with relative resources in other classpath roots again (SPR-6493)
15 years ago
Juergen Hoeller
abf6a7ee18
made parse and decorate non-final (SPR-6526)
15 years ago
David Syer
1202f67cc8
SPR-5327: tweak the ivy.xml so that commons-logging is a separate configuration. It already comes out as optional in the generated poms (including core), which isn't great, but I can't see what is causing that
15 years ago
Juergen Hoeller
e161c93f8d
full support for formatters on array/collection elements (SPR-6504)
15 years ago
Juergen Hoeller
388edd7aaa
lenient property name casing, beyond standard JavaBeans conventions (SPR-6491)
15 years ago
Juergen Hoeller
666700f7f3
constructor arguments can be overridden by name in child bean definitions (SPR-6463)
15 years ago
Juergen Hoeller
d54cf0ca37
polishing
15 years ago
Juergen Hoeller
ac490114ae
propagate full TypeDescriptor for field-level conversion as well
15 years ago
Juergen Hoeller
bb97ca32c4
added configurable "autoGrowNestedPaths" property to DataBinder (SPR-6430)
15 years ago
Juergen Hoeller
602118f1a3
extended CGLIB version range (SPR-6400)
15 years ago
Costin Leau
502c0e9055
SPR-6401
...
+ increase cglib range in OSGi manifest
15 years ago
Keith Donald
692b1ef636
found hotspot; added ConverisonServiceFactoryBean
15 years ago
Juergen Hoeller
4024b67926
removed formal deprecation from addPropertyValue; just hinting at add now
15 years ago
Juergen Hoeller
3b9605bc57
init/destroy methods get processed in the order of declaration at each hierarchy level (SPR-6344); process DestructionAwareBeanPostProcessors in common post-processor order; aligned metadata retrieval code
15 years ago
Juergen Hoeller
46cd083976
added chaining-capable "add" method to MutablePropertyValues
15 years ago
Juergen Hoeller
b41e3956bc
revised scope inheritance: default scope is "" (empty String) now; consistent isPrototype checks
15 years ago
Juergen Hoeller
ee5330801d
BeanDefinitions return isSingleton()=true by default again (for CXF compatibility)
15 years ago
Keith Donald
d85dc01e28
moved generic converter to spi; added entity converter; removed various service impls in favor of service factory
15 years ago
David Syer
66939ded0f
RESOLVED - issue SPR-6366: Cannot import bean definitions using classpath*: resource location
...
http://jira.springframework.org/browse/SPR-6366
15 years ago
Keith Donald
aac9107f6b
SPR-6350
15 years ago
Juergen Hoeller
a6bba67bca
added setValidating to XmlBeanDefinitionReader itself as well (SPR-6336)
15 years ago
Juergen Hoeller
5d772554ae
report error in case of constructor-arg index ambiguity (SPR-6329)
15 years ago
Juergen Hoeller
c495cbb1bf
MergedBeanDefinitionPostProcessors apply after all other post-processors (for @PostConstruct to be invoked after other BPPs; SPR-6066)
15 years ago
Juergen Hoeller
0832334648
polishing
15 years ago
Juergen Hoeller
a884a407aa
child bean definition's scope attribute can be inherited from parent bean definition now (SPR-3542)
15 years ago