Commit Graph

13982 Commits (c55b5d7111ba7d599438d296c35851bfe072caf2)
 

Author SHA1 Message Date
Andy Wilkinson ec4b80443f Upgrade to Mockito 2.11.0
Closes gh-10668
7 years ago
Andy Wilkinson 688da652ac Polish 7 years ago
Andy Wilkinson 70f6c784c7 Upgrade to Spring Web Services 3.0.0.RC1
Closes gh-10666
7 years ago
Stephane Nicoll dd90f071c6 Bump ASM version to be Java 8+ compatible
Closes gh-10647
7 years ago
Stephane Nicoll 8762d952a4 Merge pull request #10657 from izeye:gh-10435-doc
* pr/10657:
  Remove "Securing the H2 console" section
7 years ago
Johnny Lim caa6e18be1 Remove "Securing the H2 console" section
Closes gh-10657
7 years ago
Stephane Nicoll 377e4f3156 Merge pull request #10658 from dreis2211:assert-state-supplier
* pr/10658:
  Polish "Use Assert.state() with Supplier where possible"
  Use Assert.state() with Supplier where possible
7 years ago
Stephane Nicoll 2eba1c5f62 Polish "Use Assert.state() with Supplier where possible"
Closes gh-10658
7 years ago
dreis2211 3b71393e0a Use Assert.state() with Supplier where possible
See gh-10658
7 years ago
Stephane Nicoll 3e18213362 Merge pull request #10636 from izeye:polish-20171014
* pr/10636:
  Polish
7 years ago
Johnny Lim 5aa32b3d0f Polish
Closes gh-10636
7 years ago
Andy Wilkinson 0af4536316 Ensure media types are used consistently across endpoint mappings
Previously, the media types that are consumed and produced by
endpoints were configured in the web stack-specific configuration.
Furthermore, these configured media types were not used for the
discovery "endpoint" that links to all the available endpoints.

This commit introduces EndpointMediaTypes that is configred in a
single, central location and then used to configure the consumed and
produced media types for endpoints exposed via WebFlux, Web MVC, and
Jersey as well as the discovery "endpoint" provided by each.

Closes gh-10659
7 years ago
Stephane Nicoll 4c5c5105b3 Merge pull request #9737 from candrews:autocommit
* pr/9737:
  Polish "When pool autocommit is disabled, inform Hibernate"
  When pool autocommit is disabled, inform Hibernate
7 years ago
Stephane Nicoll 22de4303c5 Polish "When pool autocommit is disabled, inform Hibernate"
Closes gh-9737
7 years ago
Craig Andrews d0e70e90de When pool autocommit is disabled, inform Hibernate
Starting with Hibernate 5.2.10, the JPA property
`hibernate.connection.provider_disables_autocommit` should be set to true
when the datasource has autocommit disabled in order to improve
performance.

See gh-9737
7 years ago
Stephane Nicoll 70ead0135b Merge pull request #10609 from jmcshane:openshift-docs
* pr/10609:
  Update docs for OpenShift
7 years ago
James McShane 3237b05785 Update docs for OpenShift
The current documentation references mechanisms for OpenShift 2, which
has been changed significantly with the latest releases, specifically the
OpenShift 3 release.

Closes gh-10609
7 years ago
Stephane Nicoll 52b484ff4e Merge pull request #10616 from izeye:fix-broken-links-20171012-2nd
* pr/10616:
  Fix broken links
7 years ago
Johnny Lim e234fb5d19 Fix broken links
Closes gh-10616
7 years ago
Stephane Nicoll d974a74586 Merge pull request #10615 from vpavic:improve-oauth-docs
* pr/10615:
  Use properties in Security OAuth2 Client doc config example
  Fix Security OAuth2 Client documentation
7 years ago
Vedran Pavic 12233672db Use properties in Security OAuth2 Client doc config example
Closes gh-10615
7 years ago
Vedran Pavic d705696bdd Fix Security OAuth2 Client documentation
This commit fixes incorrect section level and sample configuration properties.

See gh-10615
7 years ago
Madhura Bhave d307eba0a3 Add property to configure base-path for web endpoints.
Also, move properties corresponding to management server under
`management.server.*`.

Closes gh-10230
7 years ago
Brian Clozel 68db43cf44 Support error conventions in Spring WebFlux
This commit adds support for Spring Boot error conventions with WebFlux.
The Spring MVC support for that is based on an `Controller` that's
mapped on a specific `"/error"` path and configured as an error page in
the Servlet container. With WebFlux, this support leverages a
`WebExceptionHandler`, which catches exceptions flowing through the
reactive pipeline and handles them.

The `DefaultErrorWebExceptionHandler` supports the following:
* return a JSON error response to machine clients
* return error HTML views (templates, static or default HTML view)

One can customize the error information by contributing an
`ErrorAttributes` bean to the application context.

Spring Boot provides an `ErrorWebExceptionHandler` marker interface and a
base implementation that provides high level constructs to handle
errors, based on the Spring WebFlux functional flavor.
The error handling logic can be completely changed by providing a custom
`RouterFunction` there.

Fixes gh-8625
7 years ago
Stephane Nicoll c4adb76df2 Merge branch '1.5.x' 7 years ago
Stephane Nicoll 00142dc70f Fixup version numbers following release 7 years ago
Spring Buildmaster c0f9f64776 Next Development Version 7 years ago
Andy Wilkinson fc68af33c4 Correct typos (sonattype -> sonatype) in pipeline.yml 7 years ago
Andy Wilkinson 74d7a53119 Trigger JDK 9 build when Git repo changes
Closes gh-10515
7 years ago
Andy Wilkinson 8d55b5afae Merge branch '1.5.x' 7 years ago
Andy Wilkinson 44b1f582ad Upgrade to GemFire 8.2.7
Closes gh-10651
7 years ago
Andy Wilkinson f8602817af Merge branch '1.5.x' 7 years ago
Andy Wilkinson dfb87c67fb Merge pull request #10635 from Janne Valkealahti
* gh-10635:
  Fix typo in documentation
7 years ago
Janne Valkealahti ac2bbea091 Fix typo in documentation
- As error handling sample is using `CustomErrorType`, fix
  description which mentions `CustomerErrorType`.
7 years ago
Andy Wilkinson 162a48806e Update custom layout sample so it builds with Java 9
Previously, the custom layout sample did not configure the source
and target for the compiler. This meant that both defaulted to 1.5
which is not supported by Java 9's javac. The oldest support version
is 1.6.

This commit sets the maven.compiler.source and maven.compiler.target
properties to 1.8 (the lowest version support by Boot 2.0) allowing
the sample to build with both Java 8 and Java 9.

See gh-10515
7 years ago
Andy Wilkinson 63b7591031 Add another dependency required for javadoc generation with Java 9
See gh-10515
7 years ago
Andy Wilkinson c3d10a811e Add dependencies required for javadoc generation with Java 9
See gh-10515
7 years ago
Andy Wilkinson 44acef2ae2 Merge branch '1.5.x' 7 years ago
Andy Wilkinson ffdff1cdc2 Consider multiple MBeanExporters when excluding beans from export
Closes gh-10632
7 years ago
Andy Wilkinson be09f1c256 Merge branch '1.5.x' 7 years ago
Andy Wilkinson 8a653d2c8a Upgrade to Spring Ldap 2.3.2.RELEASE
Closes gh-10631
7 years ago
Andy Wilkinson b6a471a6d8 Upgrade to Httpcore 4.4.8
Closes gh-10630
7 years ago
Andy Wilkinson 9f63e4c36d Upgrade to Appengine Sdk 1.9.58
Closes gh-10629
7 years ago
Andy Wilkinson 3d299447cc Merge branch '1.5.x' 7 years ago
Andy Wilkinson 2eb0c3ba1e Merge pull request #10588 from Eddú Meléndez
* gh-10588:
  Polish "Provide informative reason when rejecting request with invalid level"
  Provide informative reason when rejecting request with invalid level
7 years ago
Andy Wilkinson 43aa7dbaf1 Polish "Provide informative reason when rejecting request with invalid level"
See gh-10588
7 years ago
Eddú Meléndez 9e5a1b32c8 Provide informative reason when rejecting request with invalid level
Previously, bad request with no reason was included in the response.
This commit introduces the reason when invalid log level is sent in the
request.

Fixes gh-10588
7 years ago
Phillip Webb ac4b923b88 More promote script fixes
See gh-9316
7 years ago
Brian Clozel 81d1b3c6ee Build against Spring Framework 5.0.1.BUILD-SNAPSHOT
See gh-10587
7 years ago
Andy Wilkinson 273defdb1f Merge branch '1.5.x' 7 years ago