Java 类org.springframework.boot.devtools.remote.server.HttpStatusHandler 实例源码

项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:RemoteDevToolsAutoConfiguration.java   
@Bean
public HandlerMapper remoteDevToolsHealthCheckHandlerMapper() {
    Handler handler = new HttpStatusHandler();
    return new UrlHandlerMapper((this.serverProperties.getContextPath() == null ? ""
            : this.serverProperties.getContextPath())
            + this.properties.getRemote().getContextPath(), handler);
}
项目:spring-boot-concourse    文件:RemoteDevToolsAutoConfiguration.java   
@Bean
public HandlerMapper remoteDevToolsHealthCheckHandlerMapper() {
    Handler handler = new HttpStatusHandler();
    return new UrlHandlerMapper((this.serverProperties.getContextPath() == null ? ""
            : this.serverProperties.getContextPath())
            + this.properties.getRemote().getContextPath(), handler);
}
项目:contestparser    文件:RemoteDevToolsAutoConfiguration.java   
@Bean
public HandlerMapper remoteDevToolsHealthCheckHandlerMapper() {
    Handler handler = new HttpStatusHandler();
    return new UrlHandlerMapper(this.properties.getRemote().getContextPath(),
            handler);
}