Rossen Stoyanchev
8ccfecc406
Workaround for Content-Length issue in Reactor Netty
...
Issue: SPR-14643
10 years ago
Rossen Stoyanchev
e024aa0049
Follow up fix for PR #1168
10 years ago
Rossen Stoyanchev
3bc1121b9d
Check both connection and connected flag
...
Issue: SPR-14703
10 years ago
Arjen Poutsma
c6a61e0d85
Add Resource.readableChannel()
...
Added readableChannel() to Resource, which returns a
java.nio.ReadableByteChannel. The default implementation uses
Channels.newChannel() to create a channel based on what is returned from
getInputStream(). Subclasses have more effecient, file-based
implementations.
Issue: SPR-14698
10 years ago
Stephane Nicoll
06395f41cb
Merge pull request #1172 from kosmaty:punctuation-formatting-fix
...
* pr/1172:
Fix doc style
10 years ago
kosmaty
eef41fd8ab
Fix doc style
...
Closes gh-1172
10 years ago
Rossen Stoyanchev
bc14c5ba83
Polish [CssLinkResource|AppCacheManifest]Transformer
...
This commit updates the two transformers to make them more
consistent with updates of their spring-web-reactive equivalents.
Issue: SPR-14521
10 years ago
Rossen Stoyanchev
33d90747a1
Asynchronous ResourceResolver + ResourceTransformer
...
Issue: SPR-14521
10 years ago
Juergen Hoeller
f592599349
Polishing
...
(cherry picked from commit 54db496 )
10 years ago
Juergen Hoeller
782c99dfaf
PropertySourcesPropertyResolver does not log retrieved value by default
...
Issue: SPR-14709
(cherry picked from commit fbe7ddb )
10 years ago
Juergen Hoeller
ce42ed4d44
Polishing
10 years ago
Juergen Hoeller
c69e6a36f7
Revised IllegalArgumentException handling for Formatter parse calls
...
Issue: SPR-14661
10 years ago
Juergen Hoeller
0c2e8a6246
Consistent callbacks for TypeFilters, ImportSelectors and ImportBeanDefinitionRegistrars
...
Issue: SPR-14686
10 years ago
Juergen Hoeller
5405c07d26
Configuration class processing uses MetadataReaderFactory for current ResourceLoader
...
Issue: SPR-14684
10 years ago
Juergen Hoeller
34ab818dfa
HibernateExceptionTranslator avoids JPA IllegalState/ArgumentException translation
...
Issue: SPR-14681
10 years ago
Juergen Hoeller
480cd2c2f0
IdentityHashMap for scheduled tasks (avoiding hashCode calls on bean instances)
...
Issue: SPR-14666
10 years ago
Juergen Hoeller
a86f6d3676
ApplicationEventPublisher as functional interface
...
Issue: SPR-14699
10 years ago
Juergen Hoeller
915350d0ce
Reliable last-modified timestamp tests on Windows
10 years ago
Juergen Hoeller
118d093eaf
Drop defensive Joda-Time 2.x check
10 years ago
Juergen Hoeller
d5c9cc62f1
Correct ISO DateTime example
...
Issue: SPR-14675
10 years ago
Juergen Hoeller
edbc1e9212
Avoid outdated Tibco workaround in shouldCommitAfterNoMessageReceived
...
Issue: SPR-14697
10 years ago
Juergen Hoeller
fa820bc0c9
PropertyValue stores source object in common superclass field
...
Issue: SPR-8337
10 years ago
Juergen Hoeller
6f491bb319
Upgrade to Tomcat 8.5.5 and Undertow 1.4.2
10 years ago
Arjen Poutsma
360ef5f5e3
Remove accidentally added ModelAndView class
...
Removed accidentally added ModelAndView class.
10 years ago
Sebastien Deleuze
fc52ddcd97
Polish
10 years ago
Arjen Poutsma
d8f4d37624
Fixed bug in reading Flux from Channel
...
Fixed bug where the returned Flux from DataBufferUtils.read() would be
completed prematurely if the channel was not ready to read, but did
not reach the end of the file either.
10 years ago
Arjen Poutsma
61bf6a25b7
Renamed 'and' to 'andSame' and 'andOther' to 'and'
...
In RoutingFunction, renamed 'and' to 'andSame', and 'andOther' to
'and' to make the commonly used method name shorter.
10 years ago
Arjen Poutsma
96ec18a9aa
Merged all Response implementations into one
...
Merged all *Response implementations into one DefaultResponses class
10 years ago
Arjen Poutsma
35b93b2948
Add template rendering support
...
This commit introduces template rendering support in the web.reactive
package, through a Response.render method and a Rendering interface.
10 years ago
Sebastien Deleuze
4991b97887
Polish
10 years ago
nkjackzhang
802a4c6d02
Remove unnecessary "method" in reference manual ( #1166 )
...
From context, It seems that the first word "method" is needless,
10 years ago
Sebastien Deleuze
aaba53f76a
Allow to pass hints parameter in HttpMessageReader/Writer
...
Issue: SPR-14557
10 years ago
Sebastien Deleuze
b91867cf45
Update Codec API to use Map<String, Object> for hints
...
Issue: SPR-14557
10 years ago
Juergen Hoeller
b88ed85994
Upgrade to Hibernate Validator 5.3 CR1 (and Protobuf 3.0.2)
...
Issue: SPR-13965
10 years ago
Juergen Hoeller
d631b4cca9
HibernateTemplate reflectively calls getNamedQuery (for runtime compatibility with Hibernate 5.0/5.1 vs 5.2)
...
Issue: SPR-14676
10 years ago
Juergen Hoeller
8c5660683a
MappingJackson2MessageConverter adds message id and destination to type resolution exception
...
Issue: SPR-14672
10 years ago
Stephane Nicoll
f55b4c23fc
Merge pull request #1165 from nkjackzhang:patch-6
...
* pr/1165:
Fix typo
10 years ago
nkjackzhang
170d8ba5c4
Fix typo
...
There is no attribute named `path` in `@RequestParam`, so I change it to
`name`.
Closes gh-1165
10 years ago
Brian Clozel
1881aa5b5b
Change default appcache manifest file extension
...
This commit changes the default file extension configured with
`AppCacheManifestTranformer`. This ResourceTransformer was previously
considering `.manifest` files by default, but this has been changed in
the official spec to `appcache`, in order not to clash with Microsoft's
unregistered application/manifest type.
Issue: SPR-14687
10 years ago
Brian Clozel
4588b6c9f4
Rename ResolvedResource to HttpResource
...
`ResolvedResource` is a rather generic name - changing the extended
interface to something more meaningful: `HttpResource`.
For now, implementations are linked with the resource handling chain,
but this aspect has been removed from the interface documentation.
Issue: SPR-14264
10 years ago
Sam Brannen
2f2e6dffb4
Upgrade to TestNG 6.9.12
10 years ago
Arjen Poutsma
e882f739bf
Merge pull request #1162 from poutsma/spock_model_and_view
...
* spock_model_and_view:
Fix using system default charset in view rendering
Changed View.render method to take Map<String, ?>
10 years ago
Arjen Poutsma
5f941c1dd1
Fix using system default charset in view rendering
...
Prior to this commit, FreeMarkerView used the system default charset to
render. This commit switches this by defaulting to UTF-8, if no charset
is specified in the content type.
- Add contentType parameter to AbstractView.renderInternal, used to
determine the charset contained therein
- Adds a defaultCharset property to AbstractView and
ViewResolverSupport.
10 years ago
Arjen Poutsma
a746c3c54e
Changed View.render method to take Map<String, ?>
...
Changed View's render method from taking a HandlerResult to taking a
Map<String, ?>, in order to facilitate scenarios where a HandlerResult
is not available (i.e. web.reactive.function).
10 years ago
Arjen Poutsma
ecf5a9f34e
Added Response.build(Publisher<Void>)
10 years ago
Arjen Poutsma
f4ae831f7f
Polishing
...
- Changed Response.sse methods to allow for specific Publisher types to
be returned in Response.
10 years ago
Sebastien Deleuze
d51005fbbe
Improve Encoder Javadoc
10 years ago
Arjen Poutsma
10e157a5a2
Removed unnecessary Driver file
10 years ago
Arjen Poutsma
f8ac17f278
Polishing
...
Two changes to web.reactive.function:
- Changed Response.stream method to allow for specific Publisher types
to be returned in Response.
- Router now stores HttpMessageReader|Writer retrieved from
Configuration in the attributes as supplier, not as stream, to allow
for multiple reads.
10 years ago
Brian Clozel
d1f60e3de1
Fix default encoding in CONTRIBUTING documentation
...
Sources should be using UTF-8.
Issue: SPR-14674
10 years ago