Brian Clozel
57147241cb
Make WebClientCustomizer optional for WebClient
...
This commit removes the required dependency on `WebClientCustomizer`
instances when creating `WebClient` beans, making it optional.
Closes gh-12458
7 years ago
Phillip Webb
d1e51d7f98
Explicitly set asyncSupported for reactive servers
...
Update `JettyReactiveWebServerFactory`/`TomcatReactiveWebServerFactory`
to explicitly set `asyncSupported` to `true`.
Fixes gh-12486
7 years ago
Brian Clozel
079851ebb4
Merge pull request #12472 from igor-suhorukov
...
* pr/12472:
avoid check class by string name
7 years ago
igor-suhorukov
4c61d8abfe
avoid check class by string name
7 years ago
Phillip Webb
09e0f1e841
Merge pull request #12459 from izeye
...
* pr/12459:
Add missing super() calls
7 years ago
Johnny Lim
2e6914ea88
Add missing super() calls
...
Closes gh-12459
7 years ago
Brian Clozel
a08deff0ce
Fix WelcomePageHandlerMapping order
...
This commit fixes 220f8cd
and moves the order for
`WelcomePageHandlerMapping` to `2` since the previous order was
conflicting with the resource mapping.
Closes gh-12335
7 years ago
Jon Schneider
0ce7c34036
Upgrade to Micrometer 1.0.2
...
Closes gh-12480
7 years ago
Phillip Webb
ca7b230521
Merge pull request #12477 from dreis2211
...
* pr/12477:
Polish "Move test to ApplicationContextRunner"
Move test to ApplicationContextRunner
7 years ago
Phillip Webb
c3bc6f6dd6
Polish "Move test to ApplicationContextRunner"
...
Closes gh-12477
7 years ago
dreis2211
3246496e2c
Move test to ApplicationContextRunner
...
Move `DispatcherServletAutoConfigurationTests` to use the
`ApplicationContextRunner`
See gh-12477
7 years ago
Phillip Webb
8a53631066
Merge pull request #12475 from dreis2211
...
* pr/12475:
Replace Mockito.times(0) with Mockito.never()
7 years ago
dreis2211
8626daf135
Replace Mockito.times(0) with Mockito.never()
...
Closes gh-12475
7 years ago
Phillip Webb
1412e7e690
Merge pull request #12428 from atelechev
...
* atelechev/refactor-spring-boot-json-parsers:
Polish "refactor spring-boot JSON parser"
Refactor spring-boot JSON parsers
7 years ago
Phillip Webb
90949669be
Polish "refactor spring-boot JSON parser"
...
Polish JSON parser refactoring and remove some more duplication.
Closes gh-12428
7 years ago
Anton Telechev
aa69621078
Refactor spring-boot JSON parsers
...
Refactor JSON parser wrappers to remove duplicate code portions in the
parseMap() and parseList() methods by adding an AbstractJsonParser.
See gh-12428
7 years ago
Phillip Webb
a4b0be089d
Polish
7 years ago
Brian Clozel
220f8cdca2
Order WelcomePageHandlerMapping at lower precedence
...
This commit orders the `WelcomePageHandlerMapping` at
`Ordered.LOWEST_PRECEDENCE -1` in order to give a chance to other
mappings to handle the incoming requests.
In this case, developers might provide a custom `ViewController` or
custom `HandlerMapping` for the `"/"` path and we should not override
that opinion.
Closes gh-12335
7 years ago
Stephane Nicoll
5320081d0b
Revert "Only create a WebTestClient with WebFlux"
...
This reverts commit 282bd9f
7 years ago
Stephane Nicoll
b80620fe28
Revert "Group auto-configuration import selectors together"
...
This reverts commit 26d9c26
7 years ago
Stephane Nicoll
282bd9f0db
Only create a WebTestClient with WebFlux
...
This commit updates WebTestClientAutoConfiguration to only create a
WebTestClient when running a WebFlux-based application as mocking the
context only works with that mode at the moment.
Closes gh-12318
7 years ago
Stephane Nicoll
26d9c261c5
Group auto-configuration import selectors together
...
This commit updates Spring Boot's DeferredImportSelector implementations
to group imports in a consistent set. This makes sure ordering is
applied consistently.
Closes gh-12366
7 years ago
Madhura Bhave
3ae4a541b6
Merge pull request #12471 from Jon Schneider
...
* gh-12471:
Correct default Wavefront proxy port in docs
7 years ago
Jon Schneider
172794d446
Correct default Wavefront proxy port in docs
...
Closes gh-12471
7 years ago
Madhura Bhave
2e4087b80f
Merge pull request #12468 from Christoph Dreis
...
* gh-12468:
Fix typos
7 years ago
dreis2211
0d3f3e46dd
Fix typos
...
Closes gh-12468
7 years ago
Andy Wilkinson
2f1b2e3ce2
Log summary of web-exposed endpoints during startup
...
Closes gh-12442
7 years ago
Andy Wilkinson
f758a4ddd5
Do not link to controller endpoints in Jersey-based Actuator
...
Closes gh-12463
7 years ago
Stephane Nicoll
e02a1fa62b
Merge pull request #12454 from dreis2211:remove-duplicated-author-tags
...
* pr/12454:
Remove duplicated @author tags
7 years ago
dreis2211
a21ea612db
Remove duplicated @author tags
...
Closes gh-12454
7 years ago
Stephane Nicoll
20661f7ebb
Merge pull request #12448 from igor-suhorukov
...
* pr/12448:
Polish
7 years ago
igor-suhorukov
97d803bd30
Polish
...
Closes gh-12448
7 years ago
Stephane Nicoll
b32fc75102
Merge pull request #12453 from igor-suhorukov
...
* pr/12453:
Remove redundant "close" call
7 years ago
igor-suhorukov
cca976eccd
Remove redundant "close" call
...
Closing the resource is handled automatically by the try-with-resources.
Closes gh-12453
7 years ago
Stephane Nicoll
cb12514675
Merge pull request #12452 from igor-suhorukov
...
* pr/12452:
"toString()" should never be called on a String object
7 years ago
igor-suhorukov
12185251c1
"toString()" should never be called on a String object
...
Closes gh-12452
7 years ago
Stephane Nicoll
e561db4072
Merge pull request #12450 from igor-suhorukov
...
* pr/12450:
Polish
7 years ago
igor-suhorukov
93f9bd0a32
Polish
...
Closes gh-12450
7 years ago
Madhura Bhave
0b64ac07c6
Add a separate job for syncing release to central
...
See gh-12292
7 years ago
Madhura Bhave
6d9692ffb7
Fix binding to empty prefix when empty name present
...
Fixes gh-12381
7 years ago
Andy Wilkinson
b88e3cb27e
Upgrade to Hibernate Validator 6.0.8.Final
...
Closes gh-12440
7 years ago
Andy Wilkinson
db466a1ae2
Upgrade to Hibernate 5.2.15.Final
...
Closes gh-12439
7 years ago
Stephane Nicoll
4e35a2966f
Merge pull request #12427 from vincent-fuchs:patch-1
...
* pr/12427:
Polish "Add reference to RabbitMQ (advanced usage) starter"
Add reference to RabbitMQ (advanced usage) starter
7 years ago
Stephane Nicoll
0fbe3c28a2
Polish "Add reference to RabbitMQ (advanced usage) starter"
...
Closes gh-12427
7 years ago
Vincent Fuchs
61c44cf672
Add reference to RabbitMQ (advanced usage) starter
...
See gh-12427
7 years ago
Stephane Nicoll
bb25b0a1f4
Merge branch '1.5.x'
7 years ago
Stephane Nicoll
81f3f6784b
Merge pull request #12422 from igor-suhorukov
...
* pr/12422:
Polish
7 years ago
igor-suhorukov
6bdfce5874
Polish
...
Closes gh-12422
7 years ago
Stephane Nicoll
9dd5193f13
Merge pull request #12432 from igor-suhorukov:master
...
* pr/12432:
Polish "Reorder modifiers to comply with the JLS"
Reorder modifiers to comply with the JLS
7 years ago
Stephane Nicoll
ed05e1f7ca
Polish "Reorder modifiers to comply with the JLS"
...
Closes gh-12432
7 years ago