Rossen Stoyanchev
dc57cb2c9f
Update SessionDisconnectEvent
...
SessionDisconnectEvent now extends AbstractSubProtocolEvent.
Issue: SPR-12156
10 years ago
Rossen Stoyanchev
4af9851585
Add user to DISCONNECT in StompSubProtocolHandler
...
Issue: SPR-12215
10 years ago
Rossen Stoyanchev
b1e9577680
Ensure single quotes appear in documentation sample
...
Issue: SPR-12186
10 years ago
Phillip Webb
70b5f319a9
Support @Ordering of Conditions
...
Update ConditionEvaluator to collect then sort Conditions before
evaluation. By annotating Conditions with @Ordered expensive operations
can be pushed to the back of the queue.
Issue: SPR-12219
10 years ago
Juergen Hoeller
a833889c2a
Polishing
10 years ago
Juergen Hoeller
58b22ceddc
Scheduled/JmsListenerAnnotationBeanPostProcessor avoids needless re-scanning of non-annotated classes
...
Issue: SPR-12189
10 years ago
Juergen Hoeller
d3ea242085
Polishing
10 years ago
Juergen Hoeller
40cd277b7e
ReloadableResourceBundleMessageSource prevents accidental exposure of incomplete holder
...
Issue: SPR-12177
10 years ago
Juergen Hoeller
0cf472b111
BeanDefinitionParserDelegate does not silently ignore 1.x 'singleton' attribute
...
Issue: SPR-12167
10 years ago
Juergen Hoeller
80cec011b7
Log warning for single optional constructor when no default constructor to fall back to
...
Issue: SPR-12161
10 years ago
Juergen Hoeller
15320db414
Polishing
10 years ago
Juergen Hoeller
d1c720c07b
GenericTypeAwarePropertyDescriptor implements equals/hashCode for proper lookups on IBM JVM 6
...
Issue: SPR-12185
10 years ago
Juergen Hoeller
03e51d6de9
Latest dependency updates (Reactor 1.1.4, Undertow 1.0.16)
10 years ago
Juergen Hoeller
c778868d66
WebMvcConfigurationSupport uses static NoOpValidator instead of anonymous inner class
10 years ago
Juergen Hoeller
5cd59d044e
GenericTypeAwarePropertyDescriptor implements equals/hashCode for proper lookups on IBM JVM 6
...
Issue: SPR-12185
10 years ago
Juergen Hoeller
824c90d2bf
ConfigurationClassParser avoids double registration of nested classes which extend their containing class
...
Issue: SPR-12195
10 years ago
Juergen Hoeller
f394c8aa2a
Polishing
...
Issue: SPR-12196
10 years ago
Juergen Hoeller
26a93b6a33
Client request implementations enforce RFC 6265 (cookies in a single header)
...
Issue: SPR-12196
10 years ago
Juergen Hoeller
7387475deb
Polishing
10 years ago
Juergen Hoeller
c52484ed68
CachedIntrospectionResults uses ConcurrentReferenceHashMap for its type descriptor cache
...
Issue: SPR-12185
10 years ago
Juergen Hoeller
9b2da37f79
GenericConversionService detects enum subclasses as well
...
Issue: SPR-12181
10 years ago
Juergen Hoeller
553930a9f0
CompositePropertySource allows for access to its nested property sources
...
Issue: SPR-12182
10 years ago
Juergen Hoeller
70412a9d0a
Accept empty Content-Type header
...
Issue: SPR-12173
10 years ago
Juergen Hoeller
8922da3af6
Generalized workaround for JDBC 4.1 getObject(index, requiredType) failures on MySQL and Derby
...
Issue: SPR-12174
Issue: SPR-12157
10 years ago
Juergen Hoeller
1e7bfd91a7
Polishing
10 years ago
Juergen Hoeller
5790fc904a
Consistent support for java.util.Optional for all applicable handler method arguments
...
Issue: SPR-12171
10 years ago
Sam Brannen
559e81bec7
Make SocketUtils a concrete class
...
Per the Javadoc for the SocketUtils() constructor, SocketUtils can be
instantiated as a Spring Bean in XML configuration files; however,
SocketUtils is currently abstract which prevents such usage.
This commit removes the 'abstract' declaration thereby allowing
SocketUtils to be instantiated as a Spring bean.
Issue: SPR-12169
10 years ago
Juergen Hoeller
c8bbd0bae4
Polishing
10 years ago
Juergen Hoeller
dedb04bd5c
Workaround for Derby's limited support for JDBC 4.1 getObject(index, requiredType)
...
Issue: SPR-12157
10 years ago
Brian Clozel
6aef1a1d17
Fix ResourceUrlProvider path check in getForRequestUrl
...
Prior to this change, getForRequestUrl implementation would only work
for applications with a non-empty servlet path. So web applications
mapped to "/" would trigger a IllegalStateException while checking the
current request against the request path within the current mapping.
This change relaxes this and only check that the path within mapping is
within the request URL.
Issue: SPR-12158
10 years ago
Sebastien Deleuze
1c2857d15e
Add tests for Jackson @JSONView when using XML serialization
...
This commit also fixes the AbstractMappingJacksonResponseBodyAdvice Javadoc.
Issue: SPR-12149
10 years ago
Juergen Hoeller
7953c5fd88
FrameworkServlet skips HttpServletResponse.getStatus() call on Servlet 2.5
...
Issue: SPR-12151
10 years ago
Spring Buildmaster
86c3c7eb96
Next Development Version
10 years ago
Sebastien Deleuze
a29e41b9fa
Fix Jackson @JSONView when using XML serialization
...
Issue: SPR-12149
10 years ago
Juergen Hoeller
a5a56d5052
Polishing
10 years ago
Juergen Hoeller
81ba3b33f6
Dropped RequestEntity's template variable methods in order to remove dependencies on org.springframework.web
...
Instead, as outlined in the revised javadoc, let's recommend manual UriTemplate usage for RequestEntity URI input.
Issue: SPR-11752
10 years ago
Brian Clozel
7b93cefe64
Fix resource-chain XML syntax for cache
...
This change moves the resource-cache configuration to the
<resource-chain/> tag, since enabling/disabling resource cache should
be driven by a property or a SpEL expression.
So now that configuration can be set with XML attributes:
<mvc:resource-chain resource-cache="true"
cache-manager="resourceCache" cache-name="test-resource-cache">
In order to mirror the JavaConfig behavior, the "resource-cache"
attribute is required.
Issue: SPR-12129
10 years ago
Rossen Stoyanchev
c9c3857eae
Update section on resource handler config
...
Issue: SPR-14036
10 years ago
Rossen Stoyanchev
49b872e387
Adjust logging following SockJS client disconnect
...
Issue: SPR-11870
10 years ago
Rossen Stoyanchev
d85c1fbdd5
Fix initialization issue in ResourceUrlProvider
...
Before this change ResourceUrlProvider used getUrlMap to detect
ResourceHttpRequestHandler instances, however the map may contain bean
names as is the case when using <mvc:resources>. Instead it now uses
getHandlerMap.
10 years ago
Rossen Stoyanchev
3e390d1f7f
Declare ResourceUrlProvider in MVC namespace
...
This change adds a ResourceUrlProvider bean to the
ResourceBeanDefinitionParser to match the same in the Java config.
For consistency the name of the bean in the Java config is renamed.
Also a ResourceUrlProviderExposingInterceptor is declares as a global
MappedInterceptor.
10 years ago
Juergen Hoeller
d75f128752
Polishing
10 years ago
Juergen Hoeller
86b7118da8
Polishing
10 years ago
Juergen Hoeller
20c2ba35dc
Polishing
10 years ago
Juergen Hoeller
c6d29f1a31
Refactored support for @Order on @Bean methods as well as @Priority handling
...
Issue: SPR-11310
Issue: SPR-10548
10 years ago
Juergen Hoeller
82f8b4330c
CachingConnectionFactory proceeds to physicalClose in case of logicalClose exceptions
...
Issue: SPR-12148
10 years ago
Juergen Hoeller
f4f7f40f18
Test for actual HttpInvokerProxyFactoryBean usage with plain FactoryBean return type
...
Issue: SPR-12141
10 years ago
Rossen Stoyanchev
50846e3288
Update reference
10 years ago
Rossen Stoyanchev
801658d362
Rename test class to match name of class being tested
10 years ago
Juergen Hoeller
2f93759d1b
Cache.get(key, type) explicitly defines an IllegalStateException in case of a type mismatch
...
Issue: SPR-12145
10 years ago