Merge branch '2.4.x'
This commit is contained in:
commit
1a2a3d6598
|
@ -8442,7 +8442,7 @@ The following example shows how to use the `ConditionEvaluationReportLoggingList
|
||||||
[source,java,indent=0]
|
[source,java,indent=0]
|
||||||
----
|
----
|
||||||
@Test
|
@Test
|
||||||
public void autoConfigTest {
|
void autoConfigTest() {
|
||||||
ConditionEvaluationReportLoggingListener initializer = new ConditionEvaluationReportLoggingListener(
|
ConditionEvaluationReportLoggingListener initializer = new ConditionEvaluationReportLoggingListener(
|
||||||
LogLevel.INFO);
|
LogLevel.INFO);
|
||||||
ApplicationContextRunner contextRunner = new ApplicationContextRunner()
|
ApplicationContextRunner contextRunner = new ApplicationContextRunner()
|
||||||
|
|
|
@ -286,7 +286,7 @@ public class JettyWebServer implements WebServer {
|
||||||
.invokeMethod(ReflectionUtils.findMethod(connector.getClass(), "getLocalPort"), connector);
|
.invokeMethod(ReflectionUtils.findMethod(connector.getClass(), "getLocalPort"), connector);
|
||||||
}
|
}
|
||||||
catch (Exception ex) {
|
catch (Exception ex) {
|
||||||
logger.info("could not determine port ( " + ex.getMessage() + ")");
|
logger.info("could not determine port (" + ex.getMessage() + ")");
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue