5 changed files with 6 additions and 246 deletions
@ -1,31 +0,0 @@ |
|||||||
/* |
|
||||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
|
||||||
* |
|
||||||
* Redistribution and use in source and binary forms, with or without |
|
||||||
* modification, are permitted provided that the following conditions are met: |
|
||||||
* |
|
||||||
* Redistributions of source code must retain the above copyright notice, |
|
||||||
* this list of conditions and the following disclaimer. |
|
||||||
* Redistributions in binary form must reproduce the above copyright |
|
||||||
* notice, this list of conditions and the following disclaimer in the |
|
||||||
* documentation and/or other materials provided with the distribution. |
|
||||||
* Neither the name of the dreamlu.net developer nor the names of its |
|
||||||
* contributors may be used to endorse or promote products derived from |
|
||||||
* this software without specific prior written permission. |
|
||||||
* Author: Chill 庄骞 (smallchill@163.com) |
|
||||||
*/ |
|
||||||
package org.springblade.gateway.config; |
|
||||||
|
|
||||||
import org.springblade.gateway.props.RouteProperties; |
|
||||||
import org.springframework.boot.context.properties.EnableConfigurationProperties; |
|
||||||
import org.springframework.context.annotation.Configuration; |
|
||||||
|
|
||||||
/** |
|
||||||
* Swagger聚合文档配置 |
|
||||||
* |
|
||||||
* @author Chill |
|
||||||
*/ |
|
||||||
@Configuration |
|
||||||
@EnableConfigurationProperties(RouteProperties.class) |
|
||||||
public class SwaggerRouteConfiguration { |
|
||||||
} |
|
@ -1,44 +0,0 @@ |
|||||||
/* |
|
||||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
|
||||||
* |
|
||||||
* Redistribution and use in source and binary forms, with or without |
|
||||||
* modification, are permitted provided that the following conditions are met: |
|
||||||
* |
|
||||||
* Redistributions of source code must retain the above copyright notice, |
|
||||||
* this list of conditions and the following disclaimer. |
|
||||||
* Redistributions in binary form must reproduce the above copyright |
|
||||||
* notice, this list of conditions and the following disclaimer in the |
|
||||||
* documentation and/or other materials provided with the distribution. |
|
||||||
* Neither the name of the dreamlu.net developer nor the names of its |
|
||||||
* contributors may be used to endorse or promote products derived from |
|
||||||
* this software without specific prior written permission. |
|
||||||
* Author: Chill 庄骞 (smallchill@163.com) |
|
||||||
*/ |
|
||||||
|
|
||||||
package org.springblade.gateway.handler; |
|
||||||
|
|
||||||
import lombok.extern.slf4j.Slf4j; |
|
||||||
import org.springframework.http.HttpStatus; |
|
||||||
import org.springframework.http.MediaType; |
|
||||||
import org.springframework.stereotype.Component; |
|
||||||
import org.springframework.web.reactive.function.BodyInserters; |
|
||||||
import org.springframework.web.reactive.function.server.HandlerFunction; |
|
||||||
import org.springframework.web.reactive.function.server.ServerRequest; |
|
||||||
import org.springframework.web.reactive.function.server.ServerResponse; |
|
||||||
import reactor.core.publisher.Mono; |
|
||||||
|
|
||||||
/** |
|
||||||
* Hystrix 降级处理 |
|
||||||
* |
|
||||||
* @author lengleng |
|
||||||
*/ |
|
||||||
@Slf4j |
|
||||||
@Component |
|
||||||
public class HystrixFallbackHandler implements HandlerFunction<ServerResponse> { |
|
||||||
@Override |
|
||||||
public Mono<ServerResponse> handle(ServerRequest serverRequest) { |
|
||||||
log.error("网关执行请求:{}失败,hystrix服务降级处理", serverRequest.uri()); |
|
||||||
return ServerResponse.status(HttpStatus.INTERNAL_SERVER_ERROR.value()) |
|
||||||
.contentType(MediaType.TEXT_PLAIN).body(BodyInserters.fromObject("服务异常")); |
|
||||||
} |
|
||||||
} |
|
@ -1,60 +0,0 @@ |
|||||||
/* |
|
||||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
|
||||||
* |
|
||||||
* Redistribution and use in source and binary forms, with or without |
|
||||||
* modification, are permitted provided that the following conditions are met: |
|
||||||
* |
|
||||||
* Redistributions of source code must retain the above copyright notice, |
|
||||||
* this list of conditions and the following disclaimer. |
|
||||||
* Redistributions in binary form must reproduce the above copyright |
|
||||||
* notice, this list of conditions and the following disclaimer in the |
|
||||||
* documentation and/or other materials provided with the distribution. |
|
||||||
* Neither the name of the dreamlu.net developer nor the names of its |
|
||||||
* contributors may be used to endorse or promote products derived from |
|
||||||
* this software without specific prior written permission. |
|
||||||
* Author: Chill 庄骞 (smallchill@163.com) |
|
||||||
*/ |
|
||||||
|
|
||||||
package org.springblade.gateway.handler; |
|
||||||
|
|
||||||
import lombok.extern.slf4j.Slf4j; |
|
||||||
import org.springframework.beans.factory.annotation.Autowired; |
|
||||||
import org.springframework.http.HttpStatus; |
|
||||||
import org.springframework.http.MediaType; |
|
||||||
import org.springframework.stereotype.Component; |
|
||||||
import org.springframework.web.reactive.function.BodyInserters; |
|
||||||
import org.springframework.web.reactive.function.server.HandlerFunction; |
|
||||||
import org.springframework.web.reactive.function.server.ServerRequest; |
|
||||||
import org.springframework.web.reactive.function.server.ServerResponse; |
|
||||||
import reactor.core.publisher.Mono; |
|
||||||
import springfox.documentation.swagger.web.SecurityConfiguration; |
|
||||||
import springfox.documentation.swagger.web.SecurityConfigurationBuilder; |
|
||||||
|
|
||||||
import java.util.Optional; |
|
||||||
|
|
||||||
/** |
|
||||||
* SwaggerSecurityHandler |
|
||||||
* |
|
||||||
* @author lengleng |
|
||||||
*/ |
|
||||||
@Slf4j |
|
||||||
@Component |
|
||||||
public class SwaggerSecurityHandler implements HandlerFunction<ServerResponse> { |
|
||||||
@Autowired(required = false) |
|
||||||
private SecurityConfiguration securityConfiguration; |
|
||||||
|
|
||||||
/** |
|
||||||
* Handle the given request. |
|
||||||
* |
|
||||||
* @param request the request to handler |
|
||||||
* @return the response |
|
||||||
*/ |
|
||||||
@Override |
|
||||||
public Mono<ServerResponse> handle(ServerRequest request) { |
|
||||||
return ServerResponse.status(HttpStatus.OK) |
|
||||||
.contentType(MediaType.APPLICATION_JSON_UTF8) |
|
||||||
.body(BodyInserters.fromObject( |
|
||||||
Optional.ofNullable(securityConfiguration) |
|
||||||
.orElse(SecurityConfigurationBuilder.builder().build()))); |
|
||||||
} |
|
||||||
} |
|
@ -1,60 +0,0 @@ |
|||||||
/* |
|
||||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
|
||||||
* |
|
||||||
* Redistribution and use in source and binary forms, with or without |
|
||||||
* modification, are permitted provided that the following conditions are met: |
|
||||||
* |
|
||||||
* Redistributions of source code must retain the above copyright notice, |
|
||||||
* this list of conditions and the following disclaimer. |
|
||||||
* Redistributions in binary form must reproduce the above copyright |
|
||||||
* notice, this list of conditions and the following disclaimer in the |
|
||||||
* documentation and/or other materials provided with the distribution. |
|
||||||
* Neither the name of the dreamlu.net developer nor the names of its |
|
||||||
* contributors may be used to endorse or promote products derived from |
|
||||||
* this software without specific prior written permission. |
|
||||||
* Author: Chill 庄骞 (smallchill@163.com) |
|
||||||
*/ |
|
||||||
|
|
||||||
package org.springblade.gateway.handler; |
|
||||||
|
|
||||||
import lombok.extern.slf4j.Slf4j; |
|
||||||
import org.springframework.beans.factory.annotation.Autowired; |
|
||||||
import org.springframework.http.HttpStatus; |
|
||||||
import org.springframework.http.MediaType; |
|
||||||
import org.springframework.stereotype.Component; |
|
||||||
import org.springframework.web.reactive.function.BodyInserters; |
|
||||||
import org.springframework.web.reactive.function.server.HandlerFunction; |
|
||||||
import org.springframework.web.reactive.function.server.ServerRequest; |
|
||||||
import org.springframework.web.reactive.function.server.ServerResponse; |
|
||||||
import reactor.core.publisher.Mono; |
|
||||||
import springfox.documentation.swagger.web.UiConfiguration; |
|
||||||
import springfox.documentation.swagger.web.UiConfigurationBuilder; |
|
||||||
|
|
||||||
import java.util.Optional; |
|
||||||
|
|
||||||
/** |
|
||||||
* SwaggerUiHandler |
|
||||||
* |
|
||||||
* @author lengleng |
|
||||||
*/ |
|
||||||
@Slf4j |
|
||||||
@Component |
|
||||||
public class SwaggerUiHandler implements HandlerFunction<ServerResponse> { |
|
||||||
@Autowired(required = false) |
|
||||||
private UiConfiguration uiConfiguration; |
|
||||||
|
|
||||||
/** |
|
||||||
* Handle the given request. |
|
||||||
* |
|
||||||
* @param request the request to handler |
|
||||||
* @return the response |
|
||||||
*/ |
|
||||||
@Override |
|
||||||
public Mono<ServerResponse> handle(ServerRequest request) { |
|
||||||
return ServerResponse.status(HttpStatus.OK) |
|
||||||
.contentType(MediaType.APPLICATION_JSON_UTF8) |
|
||||||
.body(BodyInserters.fromObject( |
|
||||||
Optional.ofNullable(uiConfiguration) |
|
||||||
.orElse(UiConfigurationBuilder.builder().build()))); |
|
||||||
} |
|
||||||
} |
|
Loading…
Reference in new issue