Juergen Hoeller
23249cda98
Added test for SpringProperties setFlag method
...
Issue: SPR-9014
Issue: SPR-11297
2014-01-24 17:48:40 +01:00
Juergen Hoeller
edb660863b
Polishing
2014-01-24 16:59:42 +01:00
Juergen Hoeller
866c7847e3
Introduced SpringProperties class and optional "spring.properties" file
...
This in particular allows for specifying "spring.getenv.ignore" and "spring.beaninfo.ignore" in a local way within the application, in case that JVM-level system properties are locked.
Issue: SPR-9014
Issue: SPR-11297
(cherry picked from commit 8543b91 )
2014-01-24 16:58:16 +01:00
Juergen Hoeller
fc361844ec
Polishing
...
Issue: SPR-11297
2014-01-22 23:57:48 +01:00
Juergen Hoeller
52d050d21a
Factored out "suppressGetenvAccess()" method
...
Issue: SPR-11297
2014-01-22 23:57:36 +01:00
Juergen Hoeller
11ef4308b8
Polishing
2014-01-21 01:55:09 +01:00
Juergen Hoeller
f532607d4b
Introduced customizeConnection callbacks for URLConnection used by exists() / contentLength() / lastModified()
...
Issue: SPR-11320
(cherry picked from commit 4f45ad5 )
2014-01-16 17:54:44 +01:00
Juergen Hoeller
fd13c994c9
Fixed accidental use of String.isEmpty in SimpleCommandLineArgsParser
...
Issue: SPR-11321
2014-01-16 17:35:49 +01:00
Juergen Hoeller
52c11eab41
Polishing
...
(cherry picked from commit e670f4e )
2014-01-15 17:54:37 +01:00
Juergen Hoeller
b6362c5016
Introduced "spring.getenv.ignore" system property for preventing System.getenv calls
...
Issue: SPR-11297
(cherry picked from commit 961f42b )
2014-01-15 17:52:36 +01:00
Juergen Hoeller
6deb597cdf
Removed Commons Lang references and refined Java 5+ implementation details
2014-01-15 15:56:03 +01:00
Juergen Hoeller
3429a4186c
Polishing
2014-01-15 15:16:01 +01:00
Juergen Hoeller
1a0a381559
Made findMethodAnnotationOnBridgeMethod compatible with Java 8
2014-01-05 02:30:04 +01:00
Juergen Hoeller
6045914057
Polishing
2014-01-03 23:02:51 +01:00
Juergen Hoeller
e3344898cd
Support varargs for DomUtils.getChildElementsByTagName
...
Issue: SPR-11272
2014-01-03 12:18:19 +01:00
Juergen Hoeller
2e123b01e5
Polishing
...
Issue: SPR-11259
(cherry picked from commit f0d2151 )
2014-01-01 19:24:37 +01:00
Juergen Hoeller
a05c957d0e
Polishing
...
Issue: SPR-11254
(cherry picked from commit 9a39f39 )
2013-12-23 23:05:10 +01:00
Juergen Hoeller
a2de329db9
Revised XMLEventStreamWriter to allow for empty elements with attributes
...
Issue: SPR-11254
(cherry picked from commit ee5b7fd )
2013-12-23 23:04:58 +01:00
Juergen Hoeller
551364f668
Polishing
2013-12-20 00:40:14 +01:00
Juergen Hoeller
f457319965
Consistent non-declaration of serialVersionUID
2013-12-20 00:06:40 +01:00
Juergen Hoeller
f5d5882f46
Fixed @Bean meta-annotation detection when using ASM
...
This turned out to be a bug in the ASM-based AnnotationMetadata implementation where has/getAnnotatedMethods didn't consider meta-annotations., in contrast to its StandardAnnotationMetadata sibling.
Issue: SPR-10488
(cherry picked from commit 105e176 )
2013-12-16 23:09:07 +01:00
Juergen Hoeller
ec78165072
Component scanning ignores attributes and meta-annotations on non-public annotations
...
Issue: SPR-11091
(cherry picked from commit 161819f )
2013-12-11 18:42:48 +01:00
Juergen Hoeller
8e52e650f4
Fixed type resolution for uninitialized factory-method declaration
...
Issue: SPR-11112
(cherry picked from commit 5dcd287 )
2013-12-10 13:12:32 +01:00
Juergen Hoeller
71650c0a44
Fixed evaluation of "!" operator in case of multiple profile expressions
...
Issue: SPR-11093
(cherry picked from commit 6078c27 )
2013-12-10 12:16:22 +01:00
Juergen Hoeller
5639eb66b6
Polishing
2013-12-02 16:32:02 +01:00
Rossen Stoyanchev
7387cb990e
Disable ext entities in SourceHttpMessageConverter
...
This change disables the processing of external entities in
SourceHttpMessageConverter by default and provides an option to enable
it if required.
2013-11-05 09:49:13 -05:00
Juergen Hoeller
b00c31a620
Use non-lenient constructor resolution mode for @Bean methods
...
Since @Bean methods are never used with externally specified constructor argument values but rather just with autowiring, the non-lenient constructor resolution mode is appropriate in case of an overloaded @Bean method, not performing any type difference weight checks. This change includes a refinement of Spring's existing non-lenient constructor resolution (which needs to be explicitly turned on and is therefore not well tested), narrowing the conditions for the ambiguity check (only in case of the same number of arguments and not for overridden methods).
Issue: SPR-10988
(cherry picked from commit b093b84 )
2013-11-04 16:11:04 +01:00
Juergen Hoeller
3bfddc501d
Backported further GenericTypeResolver tests
...
Issue: SPR-11052
2013-10-31 17:39:39 +01:00
Juergen Hoeller
1ac8e48ebf
Polishing (backported from several master changes)
2013-10-30 22:47:16 +01:00
Juergen Hoeller
6021822ce4
Polishing
2013-10-26 17:31:43 +02:00
Juergen Hoeller
045f78e6c5
Fixed detection of setter in case of getter with covariant return type narrowing
...
Issue: SPR-10995
2013-10-26 17:31:24 +02:00
Juergen Hoeller
ad9049e68a
Polishing
2013-10-17 22:19:17 +02:00
Juergen Hoeller
b9135788b9
Fixed type prediction for generic factory methods
...
We're consistently resolving class names now, and the entire algorithm moved from GenericTypeResolver to the internal AutowireUtils helper in the bean factory package.
Issue: SPR-10411
(cherry picked from commit 8b1927f )
2013-10-17 21:46:59 +02:00
Phillip Webb
7500caea52
Fix ArrayStoreException reading subclassed enums
...
Fix ASM AnnotationAttributesReadingVisitor to correctly deal with
subclasses enums.
Issue: SPR-10914
(cherry picked from 8abe949 )
2013-09-27 11:39:11 -07:00
Juergen Hoeller
9317d8f43e
Polishing
...
(cherry picked from commit caa1218 )
2013-08-29 19:21:24 +02:00
Juergen Hoeller
692908b722
Javadoc fixes
...
(cherry picked from commit 465e629 )
2013-08-29 19:20:54 +02:00
Juergen Hoeller
610e7796d9
GenericTypeResolver properly handles bound parameterized type
...
Issue: SPR-10819
(cherry picked from commit ea6525f )
2013-08-20 19:41:00 +02:00
Juergen Hoeller
d0948f1f03
Fixed misunderstanding with respect to excludeUnlistedClasses default in JPA 2.0
...
Issue: SPR-10767
2013-07-31 23:40:59 +02:00
Juergen Hoeller
b40263e06b
PropertySourcesPlaceholderConfigurer's "ignoreUnresolvablePlaceholders" setting reliably applies to nested placeholders as well
...
Issue: SPR-10549
(cherry picked from commit 127b91f )
2013-07-31 18:38:31 +02:00
Phillip Webb
4213a31a7d
Fix failing test due to CUSTOM_COMPILATION Group
2013-07-30 13:54:42 -07:00
Phillip Webb
0a37552beb
Add CUSTOM_COMPILATION TestGroup
2013-07-30 11:54:22 -07:00
Phillip Webb
440a63a3d0
Make TypeDescriptor serializable
...
Issue: SPR-10631
(cherry picked from 9eb596a )
2013-07-23 14:19:15 -07:00
Phillip Webb
af7753eac6
Add MemorySafeUndeclaredThrowableStrategy
...
Port the latest unreleased UndeclaredThrowableStrategy implementation
from cglib to fix a memory-leak present in v3.
Issue: SPR-10709
(cherry picked from 587877c )
2013-07-19 14:39:24 -07:00
Rob Winch
404671416a
Update BuildTests to verify JDK 1.6
...
Issue: SPR-10569
2013-05-20 10:37:33 -05:00
Phillip Webb
260eafc819
Enforce JDK version on CI server
...
Add a test to ensure that the CI server does not accidentally build
with the wrong JDK version.
Issue: SPR-10569
2013-05-16 17:14:03 -07:00
Juergen Hoeller
6b89af824d
Consistent detection of Order annotation in superclasses and interfaces
...
Issue: SPR-10514
(cherry picked from commit 814d24e )
2013-05-16 18:07:00 +02:00
Juergen Hoeller
86b4b2ef23
Consistent use of Class<?> in Assert
...
(cherry picked from commit 16548d2 )
2013-05-16 16:11:30 +02:00
Juergen Hoeller
a8adec7673
Avoid unnecessary creation of default StandardEnvironment instances
...
Issue: SPR-10568
(cherry picked from commit 7e01578 )
2013-05-15 23:59:29 +02:00
Juergen Hoeller
f9db59e730
GenericTypeResolver defensively calls Class.getGenericSuperclass() and consistently uses Class<?>
...
Issue: SPR-10559
(cherry picked from commit 25e29b8 )
2013-05-14 18:01:41 +02:00
Juergen Hoeller
be224e1f30
ServletContextResourcePatternResolver uses encoded jar file location for UrlResource
...
Adding overloaded constructors for URI specification to UrlResource, as a convenience.
Issue: SPR-10471
(cherry picked from commit 1f0f46f )
2013-05-10 22:13:17 +02:00