- 19 Jan, 2018 13 commits
-
-
Andy Wilkinson authored
Previously, the server was created with out an explicitly configured address. This lead to it using any local address which will prefer IPv6 (::0) if it's available. By contrast, the client was created with a base URL that specified localhost as the host. This meant the the client would prefer to connect to IPv4. Normally this wouldn't cause a problem as nothing would be listening on the port in the IPv4 stack so the client would then connect to the server being tested using the IPv6 stack. However, if another process was listening to the port in the IPv4 stack, the client would connect to the wrong server. This could lead to an unexpected 404 response (if the wrong server was an HTTP server) or a hang if it was not. There's a chance, although I think it's unlikely, that the problem described above is the cause of gh-10569. I think it's unlikely as the hang tracked by gh-10569 only occurs when running the WebFlux endpoint integration tests using Reactor Netty. If it was the problem described above, there's no reason that I can think of why we wouldn't have also seen it with the Web MVC endpoint integration tests.
-
Brian Clozel authored
See gh-10902
-
Stephane Nicoll authored
* pr/11681: Polish "Fix modifiers order" Fix modifiers order
-
Stephane Nicoll authored
Closes gh-11681
-
igor-suhorukov authored
See gh-11681
-
Stephane Nicoll authored
* pr/11690: Use this() in EndpointRequests
-
Johnny Lim authored
Closes gh-11690
-
Brian Clozel authored
This commit prevents NullPointerExceptions when the default HTML error view is being rendered with a `null` message. Fixes gh-11677
-
Phillip Webb authored
This reverts commit 7189f426.
-
Phillip Webb authored
Update `AnnotationConfigReactiveWebServerApplicationContext` to implement `AnnotationConfigRegistry`. Fixes gh-11686
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
-
- 18 Jan, 2018 27 commits
-
-
Stephane Nicoll authored
-
Stephane Nicoll authored
Closes gh-11512
-
Stephane Nicoll authored
See gh-11667
-
Stephane Nicoll authored
-
Stephane Nicoll authored
-
Johnny Lim authored
See gh-11674
-
Stephane Nicoll authored
* pr/11665: Polish "Use System.lineSeparator()"" Use System.lineSeparator()
-
Stephane Nicoll authored
Closes gh-11665
-
Johnny Lim authored
See gh-11665
-
Stephane Nicoll authored
-
Stephane Nicoll authored
* pr/10887: Polish "Add auto-configuration for RabbitMQ metrics" Add auto-configuration for RabbitMQ metrics
-
Stephane Nicoll authored
Closes gh-10887
-
Arnaud Cogoluègnes authored
See gh-10887
-
Andy Wilkinson authored
# Conflicts: # spring-boot-project/spring-boot-dependencies/pom.xml
-
Andy Wilkinson authored
See gh-11673
-
Andy Wilkinson authored
Closes gh-11672
-
Andy Wilkinson authored
Closes gh-11671
-
Andy Wilkinson authored
Closes gh-11670
-
Andy Wilkinson authored
Closes gh-11669
-
Andy Wilkinson authored
Closes gh-11668
-
Andy Wilkinson authored
The failure continued to occur so this commit reverts commit 42c1ce65. See gh-10569
-
Andy Wilkinson authored
See gh-11666
-
Stephane Nicoll authored
Closes gh-11667
-
Stephane Nicoll authored
As `validation-api` 2 is available by default, this commit adds the integration test as a regular test case. The integration test is kept to exercise what happens in a standard project. See gh-11512
-
Stephane Nicoll authored
-
Stephane Nicoll authored
The initial solution to gh-11512 was still using a plain `toString` that could potentially break with a JDK upgrade. Turns out that JDK9 actually uses the same type for AnnotatedType and ClassType so the trick of using a visitor doesn't work anymore. Retrospectively, it is quite easy to generate the full type once we have the DeclaredType as we already have some logic to get the qualified, that is raw, type and we have access to the type parameters. This commit still uses a `toString` to generate the representation of the type parameters but this looks much safer than trying to redo what such a simple `toString` should do. Also, the additional metadata that we could get on an ExecutableElement does not apply to them. Closes gh-11512
-
Andy Wilkinson authored
Closes gh-11605
-