Johnny Lim
6d68806275
Polish
...
Closes gh-11805
2018-01-27 05:22:04 +01:00
Johnny Lim
a46e047c5d
Polish
...
Closes gh-11792
2018-01-26 18:19:44 +01:00
Andy Wilkinson
82d41c1e83
Reinstate information about web endpoints' default URL mapping
...
Closes gh-11755
2018-01-26 15:41:13 +00:00
Andy Wilkinson
192fe929c7
Polish "Use custom DataSource if Flyway or Liquibase has user or url"
...
Closes gh-11751
2018-01-26 14:51:43 +00:00
Andy Wilkinson
988fc18f8c
Simplify endpoint enablement and update reference documentation
...
Closes gh-11755
2018-01-26 12:12:11 +00:00
Johnny Lim
946593238e
Align missed bits from trace endpoint changes
...
Closes gh-11789
2018-01-26 12:16:04 +01:00
Andy Wilkinson
3565961d68
Rework HTTP exchange tracing and add support for WebFlux
...
Closes gh-9980
2018-01-25 13:27:07 +00:00
Andy Wilkinson
9cae416755
Explicitly configure and document WebFilter orderings
...
Closes gh-11756
2018-01-25 11:55:01 +00:00
Andy Wilkinson
9a22201dd3
Polish
2018-01-25 11:55:01 +00:00
Stephane Nicoll
b67903a04a
Keep "testdb" default datasource name internal
...
Previously, Hikari's pool name was auto-configured with the value of
`spring.datasource.name` that defaults to `testdb`, which brings some
confusion.
This commit removes the default `testdb` value on
`spring.datasource.name` as it is a sane default only for an embedded
datasource. It is applied whenever applicable instead.
Closes gh-11719
2018-01-24 17:41:32 -08:00
Phillip Webb
017efda6ec
Add @EndpointServlet and migrate Jolokia
...
Add first class support for Servlet based endpoints and rework the
Jolokia endpoint to use it.
Fixes gh-10264
2018-01-24 17:06:13 -08:00
Stephane Nicoll
960989cfe6
Polish "Add support for anonymousReadOnly in LdapProperties"
...
Closes gh-11744
2018-01-24 10:21:33 +01:00
Johnny Lim
768e7c07e6
Polish
...
Closes gh-11720
2018-01-22 16:06:45 -08:00
Phillip Webb
66f8279f65
Polish
2018-01-22 14:06:18 -08:00
Brian Clozel
a8baf42f2f
Ensure that CharacterEncodingFilter is ordered first
...
This commit makes sure that `CharacterEncodingFilter` is ordered with
the `Ordered.HIGHEST_PRECEDENCE` and that other filters, potentially
reading the request body, are ordered after.
In this particular case, both `WebMvcMetricsFilter` and
`ErrorPageFilter` are now ordered at `Ordered.HIGHEST_PRECEDENCE + 1` to
avoid cases where the request body is read before the encoding
configuration is taken into account.
Closes gh-11607
2018-01-22 21:08:21 +01:00
Stephane Nicoll
68cc373daa
Polish
2018-01-20 11:37:39 +01:00
Madhura Bhave
d9ff51ccd3
Add StaticResourceRequest for WebFlux Security
...
Closes gh-11040
2018-01-20 10:00:08 +05:30
Brian Clozel
fb7026b832
Add documentation for HTTP/2 support in Jetty
...
See gh-10902
2018-01-19 16:21:38 +01:00
Phillip Webb
f3379668ac
Polish
2018-01-18 23:21:51 -08:00
Stephane Nicoll
8704cf1fe7
Harmonize metric property names
...
See gh-11667
2018-01-18 17:21:40 +01:00
Stephane Nicoll
beaa49a2d6
Polish "Add auto-configuration for RabbitMQ metrics"
...
Closes gh-10887
2018-01-18 16:16:26 +01:00
Stephane Nicoll
5cb6c086b6
Rename micrometer instrumentation flags
...
Closes gh-11667
2018-01-18 14:16:40 +01:00
Andy Wilkinson
54c0cf513b
Polish
2018-01-17 19:03:23 +00:00
Johnny Lim
e7185ea2b1
Polish
...
Closes gh-11655
2018-01-17 14:16:07 +01:00
Brian Clozel
1e648801bd
Move spring.mvc.media-types to content-negotiation
...
This commit moves "spring.mvc.media-types" to the
"spring.mvc.content-negotiation.*" namespaces introduced in gh-11105.
Closes gh-11636
2018-01-16 11:35:49 +01:00
Gary Russell
0af67b86ed
Polish Kafka documentation
...
Closes gh-11638
2018-01-16 08:48:34 +01:00
Brian Clozel
22c22a1ced
Move server.session.* to server.servlet.session.*
...
Closes gh-11589
2018-01-15 17:50:32 +01:00
Stephane Nicoll
199d2e30d7
Polish
2018-01-15 15:15:34 +01:00
Stephane Nicoll
b2ec7c58a6
Merge branch '1.5.x'
2018-01-15 12:13:24 +01:00
Stephane Nicoll
e258884dd3
Polish doc
...
Closes gh-11529
2018-01-15 12:09:43 +01:00
Brian Clozel
67e5897c40
Disable suffix pattern matching in Spring MVC
...
This commit disables by default suffix pattern matching in Spring MVC
applications. As described in the Spring MVC documentation (see
https://docs.spring.io/spring/docs/current/spring-framework-reference/web.html#mvc-ann-requestmapping-suffix-pattern-match ),
this is considered as best practice.
This change also introduces new configuration properties to achieve
similar results in a safer way (using query parameters) or to rollback
to the former default.
Closes gh-11105
2018-01-15 11:58:26 +01:00
Johnny Lim
77150f8dc9
Polish
...
Closes gh-11630
2018-01-15 10:20:31 +01:00
Stephane Nicoll
ae3cd75d1a
Polish "Upgrade to Micrometer 1.0.0-rc.6"
...
Closes gh-11598
2018-01-11 18:35:31 +01:00
Andy Wilkinson
a051e30fe0
Publish an event after refresh but before runners are called
...
This commit partially reverts the changes made in ec470fbe. While
the started message continues to be logged before any application and
command line runners are called, the publishing of
ApplicationReadyEvent now happens after the runners have been called.
Additionally, a new event, named ApplicationStartedEvent, has been
introduced. This new event is published after the context has been
refreshed but before any application and command line runners are
called.
Closes gh-11484
The reworking of the events described above also means that either
an ApplicationReadyEvent or an ApplicationFailedEvent will be
published and the latter should never be published once the former
has been published.
Closes gh-11485
2018-01-11 11:26:53 +00:00
Stephane Nicoll
4a9123d6e3
Detect user-defined RedisCacheConfiguration
...
This commits improves the cache auto-configuration for Redis by looking
up a custom "RedisCacheConfiguration" bean that allows to take full
control over the `RedisCacheManager`.
Closes gh-11599
2018-01-11 11:52:08 +01:00
Stephane Nicoll
027e6baba5
Improve documentation for WebTestClient
...
Closes gh-11203
2018-01-10 16:15:15 +01:00
Andy Wilkinson
2059922735
Make ContextIdApplicationContextInitializer produce unique IDs
...
Closes gh-11023
2018-01-10 12:53:03 +00:00
Madhura Bhave
e57aafd63d
Provide EndpointRequest for WebFlux-based Security
...
Closes gh-11022
2018-01-09 16:06:36 -08:00
Stephane Nicoll
c373c0e830
Add missing artifact required for the Javadoc task
...
See gh-10696
2018-01-09 15:22:16 +01:00
Stephane Nicoll
df647605af
Merge branch '1.5.x'
2018-01-09 13:28:08 +01:00
Stephane Nicoll
1b1852d5c8
Polish WebFlux.fn documentation
...
Closes gh-11576
2018-01-09 09:58:27 +01:00
Phillip Webb
286a3bb10a
Polish GSON customization support
...
Closes gh-11498
2018-01-08 23:13:46 -08:00
ioann
ba552f1d24
Allow GSON customization via properties or beans
...
Update GSON support to allow customization with either properties or
customize beans.
See gh-11498
2018-01-08 22:37:55 -08:00
Stephane Nicoll
66d58294d5
Merge branch '1.5.x'
2018-01-08 17:46:16 +01:00
Andy Wilkinson
927003e0b7
Polish
2018-01-08 13:59:14 +00:00
Stephane Nicoll
6daad1f562
Allow to inject the Environment in FailureAnalyzer
...
Closes gh-11569
2018-01-08 14:24:23 +01:00
Stephane Nicoll
b7f60c2ded
Configure NettyStreamFactoryFactory by default if available
...
Closes gh-11526
Closes gh-10961
2018-01-08 10:46:51 +01:00
Stephane Nicoll
2b38ee9daf
Polish
2018-01-08 10:38:59 +01:00
Stephane Nicoll
f527c4b88c
Add reference to migration guide
...
Closes gh-11302
2018-01-08 09:35:13 +01:00
Stephane Nicoll
c4db22007c
Polish "Add support for additional Kafka listener properties"
...
Closes gh-11502
2018-01-05 14:35:04 +01:00