Sam Brannen
54703bf3f8
Introduce ignored, failing tests for SPR-13475
...
This commit introduces ignored, failing tests that demonstrate that the
@Cache* annotations are not yet supported as merged composed annotations.
Issue: SPR-13475
9 years ago
Sam Brannen
d66f85bd66
Polishing
9 years ago
Sam Brannen
6a30d04d1e
Ensure all 4.2 XSDs reference beans & tool XSDs from 4.2
9 years ago
Sam Brannen
c866c172ec
Polish spring-context-4.2.xsd
9 years ago
Juergen Hoeller
fbce18418a
Context namespace exposes null-value attribute for property-placeholder element
...
Issue: SPR-13461
9 years ago
Kamil Szymanski
6802504db0
Fix `@Configuration` javadoc typo
...
Closes gh-874
9 years ago
Juergen Hoeller
4dee9cbf62
ConcurrentMapCache.putIfAbsent properly supports nulls
...
Issue: SPR-13458
9 years ago
Sam Brannen
22e84a87f4
Polish proxy tests
9 years ago
Juergen Hoeller
a8432bc8a1
Tests for enum array with varargs (and related refinements)
...
Issue: SPR-13328
9 years ago
Juergen Hoeller
811de8e50b
AbstractApplicationContext allows for re-refresh and re-close
...
Issue: SPR-13425
9 years ago
Sam Brannen
93f3b9cbe0
Polish Javadoc for @EnableAsync
9 years ago
Juergen Hoeller
7118fcff0d
MethodValidationInterceptor falls back to invocation attempt with resolved bridge method (for Hibernate Validator 5.2 compatibility)
...
Issue: SPR-12237
9 years ago
Juergen Hoeller
e05fb494f5
Polishing
9 years ago
Juergen Hoeller
3430f7623c
Consistent detection of meta-annotation attributes via ASM
...
Issue: SPR-13394
9 years ago
Juergen Hoeller
c685fd7c23
Polishing
9 years ago
Juergen Hoeller
6d1b8b5a31
SpringWebConstraintValidatorFactory for use with validation.xml
...
Issue: SPR-13327
9 years ago
Stephane Nicoll
22948bd7f0
Add hook to create custom BeanPropertyBindingResult
...
Issue: SPR-13373
9 years ago
Sam Brannen
f47bbb0d9e
Polish tests
9 years ago
Juergen Hoeller
e0f012f32d
Removal of redundant JdkVersion checks in the test suite
...
Issue: SPR-13312
9 years ago
Juergen Hoeller
d8794a1edc
Test against EhCache 3.0 M2 (as a JCache provider)
...
Includes latest dependency updates (Jackson 2.6.1, Jetty 9.3.2, Undertow 1.2.10)
Issue: SPR-13342
9 years ago
Juergen Hoeller
9ef38807e6
Polishing
9 years ago
Juergen Hoeller
2c2bed2adb
ResourceBundleMessageSource checks containsKey before calling getString
...
Issue: SPR-13295
9 years ago
Sam Brannen
725292081e
Introduce 'value' alias for 'attribute' in @AliasFor
...
SPR-11512 introduced support for annotation attribute aliases via
@AliasFor , requiring the explicit declaration of the 'attribute'
attribute. However, for aliases within an annotation, this explicit
declaration is unnecessary.
This commit improves the readability of alias pairs declared within an
annotation by introducing a 'value' attribute in @AliasFor that is an
alias for the existing 'attribute' attribute. This allows annotations
such as @ContextConfiguration from the spring-test module to declare
aliases as follows.
public @interface ContextConfiguration {
@AliasFor("locations")
String[] value() default {};
@AliasFor("value")
String[] locations() default {};
// ...
}
Issue: SPR-13289
9 years ago
Juergen Hoeller
b74377932c
Deprecate native JRuby support
...
Issue: SPR-13283
9 years ago
Juergen Hoeller
d83735694e
Polishing
9 years ago
Juergen Hoeller
f0ac2784a4
Removed unused fields from ConfigurationClassBeanDefinitionReader
...
Issue: SPR-11740
Issue: SPR-13280
9 years ago
Sam Brannen
aae0bd2fb4
Update TODO for SPR-13280
9 years ago
Juergen Hoeller
efd7f9bf72
Polishing
9 years ago
Juergen Hoeller
edd6e76b9f
Polishing
9 years ago
Juergen Hoeller
1a636b1023
Polishing
9 years ago
Sam Brannen
0153913ef4
Polish and simplify EnableSchedulingTests
9 years ago
Juergen Hoeller
cad0665187
Fixed exception message expectation plus formatting
...
Issue: SPR-13236
9 years ago
Juergen Hoeller
c3e57dd245
AsyncAnnotationBeanPostProcessor tries to find TaskExecutor by type/name
...
Issue: SPR-13248
9 years ago
Juergen Hoeller
8e55ad1c08
Polishing
9 years ago
Juergen Hoeller
66d8c2819f
ScheduledAnnotationBeanPostProcessor falls back to "taskScheduler" bean by name
...
Issue: SPR-13236
9 years ago
Juergen Hoeller
9f15f347bf
Renamed 'name' attribute to 'scopeName' (in order to avoid common override conflicts)
...
Issue: SPR-13239
9 years ago
Juergen Hoeller
ef781b6353
Fixed default formatters test to reliably work with any system locale
...
Issue: SPR-13232
9 years ago
Juergen Hoeller
2934256257
Polishing
9 years ago
Juergen Hoeller
09eb492079
Merged bean definitions are now cached early and selectively evicted after post-processing and before actual bean creation
...
Issue: SPR-12236
9 years ago
Juergen Hoeller
f4f508d869
Revisit date-time tests for compatibility with JDK 9 build 72
...
Issue: SPR-13232
9 years ago
Juergen Hoeller
c7fef87e76
ResourceBundleThemeSource exposes fallbackToSystemLocale and defaultEncoding
...
Issue: SPR-13209
9 years ago
Sam Brannen
2e41c2e23d
Polish Javadoc in @EventListener
9 years ago
Sam Brannen
72f0ac7e5b
Polish Javadoc in @EventListener
9 years ago
Stephane Nicoll
fd2c0cc982
Polish
9 years ago
Sam Brannen
14e168f2dc
Fix typos in @EventListener
9 years ago
Sam Brannen
f300325b1b
Polishing
9 years ago
Stephane Nicoll
e3bb06c878
Avoid Java8 API
9 years ago
Stephane Nicoll
bf786c3176
Support for multiple events per method
...
In addition to specifying the event type to listen to via a method
parameter, any @EventListener annotated method can now alternatively
define the event type(s) to listen to via the "classes" attributes (that
is aliased to "value").
Something like
@EventListener({FooEvent.class, BarEvent.class})
public void handleFooBar() { .... }
Issue: SPR-13156
9 years ago
Juergen Hoeller
08fb62570e
Explicit notes for load-time weaving on Tomcat 7.0.63+ and WildFly 9
...
Issue: SPR-13210
9 years ago
Sam Brannen
50bed38a85
Polishing
9 years ago