Juergen Hoeller
48ee9b52d4
Consistent check for Collection/Map beans
...
Issue: SPR-13963
10 years ago
Rossen Stoyanchev
18a59dad52
Minor Javadoc update
10 years ago
Rossen Stoyanchev
416966d943
Support Message argument with payload conversion
...
The MessageMethodArgumentResolver now also supports applying a
MessageConverter to the payload.
This is effectively a shortcut for declaring a method with an @Payload
argument + MessageHeaders and then creating a new message from the two.
Issue: SPR-13288
10 years ago
Rossen Stoyanchev
ec3571fd4d
Polish
10 years ago
Juergen Hoeller
1b53edfc5e
DefaultListableBeanFactory skips fallback match attempt for Collection/Map beans
...
Issue: SPR-13963
10 years ago
Juergen Hoeller
0adc4921ed
TestContextManager consistently handles Errors from listener invocations
...
Issue: SPR-13961
10 years ago
Rossen Stoyanchev
08eb623c41
Fix regression introduced in 4.3 snapshot
...
Commit ccd17d introduced a regression where a custom HTTP method
would no longer match for an empty @RequestMapping condition.
The previous behavior should now be restored. Effectively
RequestMethodRequestCondition as before will now match to any HTTP
method (even unknown/custom ones) if the methods condition is empty.
The only exception is HTTP OPTIONS for which we provide default
handling as a fallback (i.e. when not mapped explicitly).
Issue: SPR-13130
10 years ago
Brian Clozel
1c2ac49f2a
Add weak ETag support in ShallowEtagHeaderFilter
...
This commit adds weak ETag support in ShallowEtagHeaderFilter.
This improves the behavior of the filter in tow ways:
* weak ETags in request headers such as `W/"0badc0ffee"` will be
compared with a "weak comparison" (matching both weak and strong ETags
of the same value)
* when enabled with the "writeWeakETag" init param, the filter will
write weak Etags in its HTTP responses
Issue: SPR-13778
10 years ago
Juergen Hoeller
923534595c
ScriptUtils.executeSqlScript logs SQLWarnings at debug level
...
Issue: SPR-13959
10 years ago
Juergen Hoeller
8495fcf109
Avoid accessing the session if no session attributes need to be updated
...
Issue: SPR-13950
10 years ago
Juergen Hoeller
7fcb277de9
Consistent behavior for unwrap(null) on JPA and Bean Validation wrappers
...
Includes a fix for Query unwrapping before passing it to addNamedQuery.
Issue: SPR-13960
Issue: SPR-13957
10 years ago
Juergen Hoeller
ea4a766df7
Consistent support for SpEL next to placeholders in annotation attributes
...
Issue: SPR-13625
10 years ago
Juergen Hoeller
e0d7c6be00
Name attributes in method argument annotations allow for placeholders and expressions
...
Issue: SPR-13952
10 years ago
Sam Brannen
c2f704717e
Polish Javadoc for DefaultRequestToViewNameTranslator
10 years ago
Juergen Hoeller
25be5e060c
TaskDecorator callback supported by common TaskExecutor implementations
...
Issue: SPR-13930
10 years ago
Juergen Hoeller
ac44f9edd9
Consistent equals implementations across class hierarchies
...
Issue: SPR-13951
10 years ago
Brian Clozel
ac3847bf4a
Clarify Javadoc for CacheControl.noCache,noStore
...
This change makes clear that this is the intent of the CacheControl API
not to provide a way to configure both "no-cache" and "no-store"
directives for the "Cache-Control" header.
Issue: SPR-13780
10 years ago
Stephane Nicoll
513c1ea3d9
Update @author tag
10 years ago
Rossen Stoyanchev
43d72871bd
Merge pull request #962 from matthew-pearson/master
10 years ago
Rossen Stoyanchev
024bd6e604
Polish
10 years ago
matthew-pearson
57b466fdfc
404 rather than 405 or 200
...
Check that the path is valid and resolvable before checking that the
http method is supported. For invalid or unresolvable paths, always
respond with a 404.
10 years ago
Stephane Nicoll
a6d31d5212
Merge pull request #957 from soldierkam/cache-alloc
...
* pr/957:
Polish contribution
Decrease allocation rate for CacheOperation
10 years ago
Stephane Nicoll
37b3b24578
Polish contribution
...
Closes gh-957
10 years ago
soldierkam
c73e52412a
Decrease allocation rate for CacheOperation
10 years ago
Stephane Nicoll
7dac2e3256
Merge pull request #960 from logicg8/master
...
* pr/960:
Polish doc
10 years ago
logicg8
6ce76314e7
Polish doc
...
Closes gh-960
10 years ago
Juergen Hoeller
5c87afc51d
Polishing
10 years ago
Juergen Hoeller
1253b451f5
DefaultMessageListenerContainer stops if recovery failed after interrupt signal
...
Issue: SPR-11787
10 years ago
Juergen Hoeller
51c35bf81c
SpringValidatorAdapter exposes String attributes as MessageSourceResolvable
...
Issue: SPR-13406
10 years ago
Juergen Hoeller
a9d62372bf
Upgrade to Hibernate ORM 5.1
...
Issue: SPR-13480
10 years ago
Juergen Hoeller
5e5bf7f518
Polishing
10 years ago
Juergen Hoeller
e36b7531d8
Merge pull request #963 from poutsma/SPR-13942
...
Use synchonous API for synchonous OkHttp requests
10 years ago
Arjen Poutsma
37b32d38bc
Use synchonous API for synchonous OkHttp requests
...
This commit changes the OkHttpClientHttpRequestFactory to use the
synchronous OkHttp API for non-async requests, as opposed to
synchronizing the async API (which it used to do).
Issue: SPR-13942
10 years ago
Juergen Hoeller
343bb2f130
Support for SmartObjectFactory injection points with programmatic optionality and lenient not-unique handling
...
Issue: SPR-13943
10 years ago
Juergen Hoeller
b79e8a5cbc
Support for Common Annotations 1.1 Resource.lookup() attribute
...
Issue: SPR-13941
10 years ago
Stephane Nicoll
268ebd7e89
Merge pull request #961 from gregturn/SPR-13940
...
* pr/961:
Remove duplicate method from reference docs
10 years ago
Greg Turnquist
8cb35197ef
Remove duplicate method from reference docs
...
Closes gh-681
Issue: SPR-13940
10 years ago
Juergen Hoeller
0dff782402
Fixed addProtocolResolver signature in ConfigurableApplicationContext
...
Issue: SPR-12857
Issue: SPR-13905
10 years ago
Juergen Hoeller
f6ebc4ce97
Polishing
10 years ago
Juergen Hoeller
27c1280949
Consider negative contentLength() result as not resolvable
...
Issue: SPR-13571
10 years ago
Juergen Hoeller
37de0b241d
ProtocolResolver SPI allows for custom resource resolution
...
Issue: SPR-12857
Issue: SPR-13905
10 years ago
Rossen Stoyanchev
a1e9e6f53e
Polish MVC Java config tests
10 years ago
Rossen Stoyanchev
d53c04b4df
Add option to extend exception resolvers
...
Issue: SPR-13931
10 years ago
Rossen Stoyanchev
c45ad3022b
Add "hosts" property to RedirectView
...
Issue: SPR-13693
10 years ago
Rossen Stoyanchev
aba04d576f
Polish RedirectViewTests
10 years ago
Juergen Hoeller
8558cbc9bf
Polishing
10 years ago
Rossen Stoyanchev
b11d345c0d
Common base class for [Unknown]HttpStatusCodeException
...
Issue: SPR-13928
10 years ago
Juergen Hoeller
901c2d5f74
Consistent API between spring-web and spring-messaging HandlerMethod infrastructure
...
Issue: SPR-13929
10 years ago
Juergen Hoeller
f61b998447
AbstractMarshaller defensively uses DocumentBuilderFactory within synchronized block
...
Issue: SPR-13935
10 years ago
Juergen Hoeller
c788a8a260
Latest dependency updates (Joda-Time 2.9.2, OkHttp 2.7.4, SLF4J 1.7.15)
10 years ago