Rossen Stoyanchev
67e482aaf8
Fix ROOT_PATH constant to match recent changes
...
"/" should be 0 segments, isAbsolute=true, hasTrailingSlash=false
2017-06-15 15:40:32 -04:00
Rossen Stoyanchev
ef3e309c12
Adjust timeout in Spring MVC for reactive streaming
...
Issue: SPR-15669
2017-06-15 13:11:59 -04:00
Rossen Stoyanchev
53e8ebe6a6
Fix failing test (after previous commit)
2017-06-15 11:07:39 -04:00
Rossen Stoyanchev
97917aa57d
Add PathSegmentContainer subPath extracting method
2017-06-14 17:44:56 -04:00
Rossen Stoyanchev
1018bf771b
Separate DefaultRequestPath/DefaultPathSegmentContainer
2017-06-14 17:44:56 -04:00
Rossen Stoyanchev
97a97f9bba
RequestPath improvements
...
Static parse methods on PathSegmentContainer and PathSegment plus:
isEmpty() on PathSegmentContainer and PathSegment
isAbsolute() and hasTrailingSlash() on PathSegmentContainer
char[] alternative for valueDecoded() on PathSegment
2017-06-14 17:44:56 -04:00
Juergen Hoeller
7b5f96c804
HttpComponentsAsyncClientHttpRequestFactory supports plain HttpAsyncClient as well
...
Issue: SPR-15664
2017-06-14 17:10:44 +02:00
Juergen Hoeller
137fc48cc2
Polishing
2017-06-13 20:59:26 +02:00
Sebastien Deleuze
04d5a2951c
Remove KClass based Kotlin extensions
...
Issue: SPR-15660
2017-06-13 18:43:59 +02:00
Rob Winch
223315f96b
Update to SonarQube 2.5
2017-06-13 09:30:50 -05:00
Stephane Nicoll
5e4e3fbe8b
Merge pull request #1459 from diguage:lambda-map
...
* pr/1459:
Polish "Refactor iterator of Map with Java8's Map.forEach"
Refactor iterator of Map with Java8's Map.forEach
2017-06-13 16:06:47 +02:00
Stephane Nicoll
1ab678a2a3
Polish "Refactor iterator of Map with Java8's Map.forEach"
...
Closes gh-1459
2017-06-13 16:06:20 +02:00
diguage
1ef5f61ab2
Refactor iterator of Map with Java8's Map.forEach
...
See gh-1459
2017-06-13 16:06:20 +02:00
Arjen Poutsma
7018804e84
ServerRequest.path() should return raw path
...
After this commit, ServerRequest.path() returns the raw, unencoded path,
as that is expected by the PathPatternParser.
2017-06-13 15:23:46 +02:00
Sebastien Deleuze
97909f2258
Support date properties in Content-Disposition HTTP header
...
Issue: SPR-15555
2017-06-13 15:17:48 +02:00
Sebastien Deleuze
e0e6736bc5
Introduce LocaleContextResolver in WebFlux
...
This commit introduces LocaleContextResolver interface, which is used
at ServerWebExchange level to resolve Locale, TimeZone and other i18n
related informations.
It follows Spring MVC locale resolution patterns with a few differences:
- Only LocaleContextResolver is supported since LocaleResolver is less
flexible
- Support is implemented in the org.springframework.web.server.i18n
package of spring-web module rather than in spring-webflux in order
to be able to leverage it at ServerWebExchange level
2 implementations are provided:
- FixedLocaleContextResolver
- AcceptHeaderLocaleContextResolver
It can be configured with both functional or annotation-based APIs.
Issue: SPR-15036
2017-06-13 15:10:18 +02:00
Juergen Hoeller
72a8868f84
FreeMarker macros based on HTML output format (requires FreeMarker 2.3.24+)
...
Issue: SPR-14740
2017-06-13 14:21:09 +02:00
Juergen Hoeller
a0cea9a86f
Polishing
2017-06-13 14:20:33 +02:00
Sebastien Deleuze
aa28b6cb54
Upgrade to Kotlin 1.1.2-5
...
Changelog: https://github.com/JetBrains/kotlin/releases/tag/v1.1.2-5
2017-06-13 12:22:52 +02:00
Juergen Hoeller
779deb0fa7
Cleanup of duplicate semicolons
...
Issue: SPR-15654
2017-06-13 11:38:05 +02:00
Juergen Hoeller
7dd8dc62a5
Fixes for ignored tests after last week's nullability commit
...
Issue: SPR-15540
2017-06-13 11:37:58 +02:00
Stephane Nicoll
58242f2249
Polish
2017-06-13 10:13:14 +02:00
Stephane Nicoll
40df48fd95
Merge pull request #1454 from diguage:lambda
...
* pr/1454:
Polish "Replace relevant code with lambda"
Replace relevant code with lambda
2017-06-13 10:09:57 +02:00
Stephane Nicoll
fc64b8040f
Polish "Replace relevant code with lambda"
...
Closes gh-1454
2017-06-13 09:42:20 +02:00
diguage
4b1478d830
Replace relevant code with lambda
...
See gh-1454
2017-06-13 08:55:38 +02:00
Juergen Hoeller
738160538e
TargetSource.getTarget() is nullable again (for compatibility with MethodInvocation.getThis)
...
Issue: SPR-15651
2017-06-13 03:11:36 +02:00
Juergen Hoeller
47ec966757
TargetSource.getTarget() is nullable again (for compatibility with MethodInvocation.getThis)
...
Issue: SPR-15651
2017-06-12 22:54:18 +02:00
Brian Clozel
233c15b80e
Add PathPatternRegistry for handler mapping matching
...
Previously `HandlerMapping` implementation were heavily relying on
`String` path patterns, `PathMatcher` implementations and dedicated maps
for matching incoming request URL to an actual request handler.
This commit adds the `PathPatternRegistry` that holds `PathPattern`
instances and the associated request handler — matching results are then
shared as `PathMatchResult` instances. `AbstractUrlHandlerMapping` will
use this registry directly, but other components dealing with request
matching (like `PatternsRequestCondition`) will directly use ordered
`PathPattern` collections since ordering is important there.
This opens the door for faster request matching and simplifies the
design of this part.
Issue: SPR-15608
2017-06-12 18:53:05 +02:00
Brian Clozel
1f0d107d37
Enable trailing slash matching by default
...
This commit enables trailing slash matching in `PathPatternParser` by
default - this mirrors the default configuration in `PathMatcher`
implementations in MVC.
2017-06-12 16:17:18 +02:00
Juergen Hoeller
3ae84d6dd8
Consistent support for Charset/StandardCharsets in UriUtils etc
...
Issue: SPR-15613
2017-06-12 15:51:45 +02:00
Juergen Hoeller
14161d1dbf
Protected applyLifecycleMethods in UrlBasedViewResolver
...
Issue: SPR-15219
2017-06-12 15:48:59 +02:00
Juergen Hoeller
6320976669
Latest dependency updates (H2 1.4.196, Apache JSTL 1.2.5, HtmlUnit 2.27)
2017-06-12 15:27:57 +02:00
Stephane Nicoll
aca5eb7393
Merge pull request #1449 from diguage:dev
...
* pr/1449:
Polish "Use Map#forEach instead of Map#entrySet#forEach"
Use Map#forEach instead of Map#entrySet#forEach
2017-06-12 14:37:52 +02:00
Stephane Nicoll
451b419624
Polish "Use Map#forEach instead of Map#entrySet#forEach"
...
Closes gh-1449
2017-06-12 14:37:33 +02:00
diguage
2efa06237a
Use Map#forEach instead of Map#entrySet#forEach
...
See gh-1449
2017-06-12 14:37:33 +02:00
Arjen Poutsma
424bc75fb1
Remove headers(HttpHeaders)
...
This commit removes the headers(HttpHeaders) method on ClientRequest and
ServerResponse, in favor of headers(Consumer<HttpHeaders>), which is
more flexible.
2017-06-12 14:14:40 +02:00
Arjen Poutsma
9bf82dc18f
Add addAll(MultiValueMap)
...
This commit introduces a new method for MultiValueMap: addAll, which
adds all values of a given map (cf putAll, which replaces existing
values).
2017-06-12 14:12:12 +02:00
Arjen Poutsma
7085a30382
Improve capacity calculcation in DefaultDataBuffer
...
This commit improves the capacity calculation for the DefaultDataBuffer,
so that the capacity typically doubles instead of improving by the
minimal required amount.
Issue: SPR-15647
2017-06-12 11:04:19 +02:00
Sebastien Deleuze
3373a3f7ef
Add Kotlin extensions for WebTestClient API
...
Issue: SPR-15622
2017-06-12 10:42:56 +02:00
Stephane Nicoll
a665da415a
Merge pull request #1450 from diguage:diamond
...
* pr/1450:
Use the diamond syntax
2017-06-12 09:19:22 +02:00
diguage
c1d44d9a34
Use the diamond syntax
...
Closes gh-1450
2017-06-12 09:19:06 +02:00
Stephane Nicoll
ca1e682dc4
Merge pull request #1451 from diguage:lambda-map
...
* pr/1451:
Polish "Refact iterator of Map with Java 8 forEach"
Refact iterator of Map with Java 8 forEach
2017-06-12 08:58:33 +02:00
Stephane Nicoll
27aabb15f9
Polish "Refact iterator of Map with Java 8 forEach"
...
Closes gh-1451
2017-06-12 08:53:56 +02:00
diguage
dab7a7f0ee
Refact iterator of Map with Java 8 forEach
...
See gh-1451
2017-06-12 08:11:32 +02:00
Stephane Nicoll
5df053c44b
Merge pull request #1455 from diguage:editor-config
...
* pr/1455:
Add EditorConfig
2017-06-12 08:08:14 +02:00
diguage
d33764353e
Add EditorConfig
...
Closes gh-1455
2017-06-12 08:07:54 +02:00
Rossen Stoyanchev
38a12ed4ba
Expose RequestPath in ServerHttpRequest
...
The new structured getPath() method replaces the existing
getContextPath() + getPathWithinApplication().
Issue: SPR-15648
2017-06-11 21:59:24 -04:00
Rossen Stoyanchev
2d17411ec4
Add RequestPath to http/server/reactive
...
Issue: SPR-15648
2017-06-11 21:59:24 -04:00
Juergen Hoeller
e2e0410570
Method-level javadoc on XmlReaderContext etc
2017-06-11 12:03:05 +02:00
Juergen Hoeller
f43ea96dd9
Upgrade to Apache Johnzon 1.1.1
...
Issue: SPR-15590
2017-06-11 12:02:57 +02:00