parent
1770f065a5
commit
cc8d7fc605
|
@ -28,7 +28,7 @@ import org.springframework.boot.actuate.endpoint.Operation;
|
|||
public interface ExposableServletEndpoint extends ExposableEndpoint<Operation>, PathMappedEndpoint {
|
||||
|
||||
/**
|
||||
* Return details of the servlet that should register.
|
||||
* Return details of the servlet that should be registered.
|
||||
* @return the endpoint servlet
|
||||
*/
|
||||
EndpointServlet getEndpointServlet();
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2012-2021 the original author or authors.
|
||||
* Copyright 2012-2019 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -24,7 +24,7 @@ import org.springframework.boot.configurationsample.ConfigurationProperties;
|
|||
|
||||
/**
|
||||
* Configuration properties using lombok @Getter and @Setter with explicitly defining
|
||||
* AccessLevel. PUBLIC on element level and overwriting behaviour at field level.
|
||||
* AccessLevel.PUBLIC on element level and overwriting behaviour at field level.
|
||||
*
|
||||
* @author Jonas Keßler
|
||||
*/
|
||||
|
|
|
@ -85,7 +85,7 @@ class ConfigDataEnvironmentContributors implements Iterable<ConfigDataEnvironmen
|
|||
* {@link ConfigDataEnvironmentContributors} instance.
|
||||
* @param importer the importer used to import {@link ConfigData}
|
||||
* @param activationContext the current activation context or {@code null} if the
|
||||
* context has not got been created
|
||||
* context has not yet been created
|
||||
* @return a {@link ConfigDataEnvironmentContributors} instance with all relevant
|
||||
* imports have been processed
|
||||
*/
|
||||
|
|
|
@ -100,7 +100,8 @@ public class NettyReactiveWebServerFactory extends AbstractReactiveWebServerFact
|
|||
}
|
||||
|
||||
/**
|
||||
* Add {@link NettyServerCustomizer}s that should apply while building the server.
|
||||
* Add {@link NettyServerCustomizer}s that should be applied while building the
|
||||
* server.
|
||||
* @param serverCustomizers the customizers to add
|
||||
*/
|
||||
public void addServerCustomizers(NettyServerCustomizer... serverCustomizers) {
|
||||
|
|
Loading…
Reference in New Issue