Juergen Hoeller
17df02d01e
Explicit flush example with JPA EntityManager
...
Issue: SPR-13723
9 years ago
Juergen Hoeller
24e4f56d7e
Test case for event listener methods on bean with potentially inactive scope
...
Also taking the opportunity to refine the "No Scope registered" exception message a bit.
Issue: SPR-13681
9 years ago
Juergen Hoeller
bb05bc7c01
EventListenerMethodProcessor leniently handles unresolvable bean types
...
Issue: SPR-13712
9 years ago
Juergen Hoeller
2a3bf69991
AsyncAnnotationBeanPostProcessor leniently handles ambiguous TaskExecutor beans
...
Issue: SPR-13720
9 years ago
Andy Clement
58756b023c
Ensure cast correctly included for OpPlus compilation
...
When the plus operator is used between strings in a SpEL
expression and that expression is compiled, it is
important to include a cast if computation of any of
the operands isn't obviously leaving strings on the
stack. Likewise if the stack contents are known to
be strings, a cast should not be included.
Issue: SPR-12426
9 years ago
Juergen Hoeller
d5ca5b74a5
DateTimeFormatterRegistrar supports Duration and Period as well
...
Issue: SPR-13721
9 years ago
Brian Clozel
b35d44bd4c
Fix inputstream reading for HTTP range requests
...
Prior to this commit, range requests would be served by
ResourceHttpRequestHandler by partially reading the inputstream of
static resources. In case of resources contained in ZIP/JAR containers,
InputStreams may not fill the entire read buffer when calling
`inputStream.read(byte[])`. This was the case when using Spring Boot's
ZipInflaterInputStream - this would then not read the entire file
content and would close the response without writing the expected body
length indicated in the "Content-Length" header.
This commit makes sure that the whole resource is read.
Issue: SPR-13661
9 years ago
Juergen Hoeller
20a286b4d6
ASM ClassWriter uses application ClassLoader for its getCommonSuperClass check
...
Issue: SPR-13695
9 years ago
Juergen Hoeller
3aefc96593
@ManagedOperationParameter declares @Target/@Retention/@Documented/@Repeatable now
...
This also turns @ManagedNotification into a repeatable annotation and consistently applies findAnnotation/getRepeatableAnnotations.
Issue: SPR-13700
9 years ago
Juergen Hoeller
0524f3a474
Class identity comparisons wherever possible
...
Issue: SPR-12926
9 years ago
Juergen Hoeller
e8417ea6e1
SimpAnnotationMethodMessageHandler skips template variable check in case of no pattern
...
Issue: SPR-13704
9 years ago
Brian Clozel
9d9433a6eb
Flush of underlying response in ContentCachingResponseWrapper
...
Prior to this commit, when adding a ShallowEtagHeaderFilter to an
application, the ServletResponse would be wrapped by a
ContentCachingResponseWrapper. When any part of the Spring
infrastructure calls `flushBuffer` on the wrapped response, the call is
delegated to the actual response, which is committed. It's not possible
to alter the response (headers, content) anymore - the ETag filter can't
act.
This change prevents the `flushBuffer` call to be delegated and only
commits the underlying response once the cached content is copied to the
actual response stream.
Issue: SPR-13717
9 years ago
Stephane Nicoll
bf1afdfdc9
Add cache tests for JCache
9 years ago
Andy Clement
29303ef591
Allow MapAccessor to be compilable in SpEL expressions
...
With this change the MapAccessor now extends CompilablePropertyAccessor
rather than just PropertyAccessor. This means that any expression that
ends up using the MapAccessor is now compilable for fast performance.
Issue: SPR-13638
9 years ago
Stephane Nicoll
610b5a20ea
Fix test name
9 years ago
Stephane Nicoll
8dea3c5ade
Remove test duplication
9 years ago
Stephane Nicoll
918e0a3888
Merge pull request #926 from kazuki43zoo/modify-tld-in-adoc
...
* pr/926:
Add link in jsp tag library
9 years ago
Kazuki Shimizu
66d99f05aa
Add link in jsp tag library
...
Closes gh-926
9 years ago
Rossen Stoyanchev
5f2d34f526
Update Javadoc
...
Issue: SPR-13678
9 years ago
Sam Brannen
de9c030ba1
Suppress warnings in Gradle build
9 years ago
Stephane Nicoll
d6073eaf8d
Merge pull request #923 from uthark/patch-2
...
* pr/923:
Remove invalid underscore
9 years ago
Oleg Atamanenko
b2c132633f
Remove invalid underscore
...
Closes gh-923
9 years ago
Stephane Nicoll
e0f4736426
Merge pull request #922 from uthark/patch-1
...
* pr/922:
Add quotes around attribute value
9 years ago
Oleg Atamanenko
a834639ac8
Add quotes around attribute value
...
Closes gh-922
9 years ago
Sam Brannen
59d60c60cf
Polishing
9 years ago
Spring Buildmaster
d781ac0c92
Next Development Version
9 years ago
Juergen Hoeller
1cb6069734
Polishing
9 years ago
Sam Brannen
4b682275c9
Clean up warnings in spring-test
9 years ago
Juergen Hoeller
5b901852e6
Upgrade to HtmlUnit 2.19
...
This upgrade includes AutoCloseable support for HtmlUnit WebConnections as introduced in 2.19, while remaining compatible with 2.18.
Issue: SPR-13686
9 years ago
Juergen Hoeller
ce5887795b
Latest dependency updates (JasperReports 6.2, Jetty 9.3.6, Joda-Time 2.9.1, HttpAsyncClient 4.1.1)
9 years ago
Juergen Hoeller
6d5c646faf
Empty lists declared with element type (for javac to accept it)
...
Issue: SPR-13680
9 years ago
Juergen Hoeller
3cb926e01c
Task list getters never return null now
...
Issue: SPR-13680
9 years ago
Juergen Hoeller
55d20557e0
Task list getters explicitly check for null now
...
Issue: SPR-13680
9 years ago
Juergen Hoeller
4b2ce60d65
Polishing
9 years ago
Juergen Hoeller
98be36a306
Extended default collection size for common per-bean caches
...
Issue: SPR-13621
9 years ago
Juergen Hoeller
7b711c4aac
AbstractAutoProxyCreator uses prefixed bean name as cache key
...
Issue: SPR-13655
9 years ago
Juergen Hoeller
90c9d96a4d
Avoid exposeTargetClass attempt if bean name is null
...
Issue: SPR-13650
9 years ago
Johnny Lim
2defb6555e
Fix broken Javadoc related to `<` and `>`
9 years ago
Sebastien Deleuze
71e2d8e9de
Handle correctly * in CorsConfiguration#combine() other parameter
...
Issue: SPR-13674
9 years ago
Juergen Hoeller
e8a0ef0206
Polishing
9 years ago
Juergen Hoeller
cc06183668
SimpleJdbcCall reliably throws exception on missing stored procedure
...
Issue: SPR-13669
9 years ago
Juergen Hoeller
43d72e2079
Restored capacity check before trying output stream resize
...
Issue: SPR-13671
9 years ago
Rossen Stoyanchev
e707347474
Fix failing tests
9 years ago
Rossen Stoyanchev
3a919a48d6
Switch "attachment" to "inline" on Content-Disposition
...
Issue: SPR-13587, SPR-13643
9 years ago
Rossen Stoyanchev
8c127ad3c9
Property init HandlerMapping in standalone MockMvc
...
Issue: SPR-13637
9 years ago
Rossen Stoyanchev
62af99a21c
Add containsKey to ServletResponseHttpHeaders
...
Issue: SPR-13668
9 years ago
Rossen Stoyanchev
cf4a417f71
Upgrade to reactor 2.0.7
...
Issue: SPR-13665
9 years ago
Juergen Hoeller
e56c11c1e8
AbstractApplicationContext.isRunning() avoids IllegalStateException
...
Issue: SPR-13667
9 years ago
Juergen Hoeller
71a7b5d086
Fixed code examples
...
Issue: SPR-13666
9 years ago
Juergen Hoeller
2bf8c0bc42
Polishing
9 years ago