23 changed files with 151 additions and 348 deletions
@ -1,55 +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.AllArgsConstructor; |
||||
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; |
||||
import springfox.documentation.swagger.web.SwaggerResourcesProvider; |
||||
|
||||
/** |
||||
* SwaggerResourceHandler |
||||
* |
||||
* @author lengleng |
||||
*/ |
||||
@Slf4j |
||||
@Component |
||||
@AllArgsConstructor |
||||
public class SwaggerResourceHandler implements HandlerFunction<ServerResponse> { |
||||
private final SwaggerResourcesProvider swaggerResources; |
||||
|
||||
/** |
||||
* 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) |
||||
.body(BodyInserters.fromValue(swaggerResources.get())); |
||||
} |
||||
} |
@ -1,52 +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; |
||||
import springfox.documentation.swagger.web.SecurityConfigurationBuilder; |
||||
|
||||
/** |
||||
* SwaggerSecurityHandler |
||||
* |
||||
* @author lengleng |
||||
*/ |
||||
@Slf4j |
||||
@Component |
||||
public class SwaggerSecurityHandler implements HandlerFunction<ServerResponse> { |
||||
|
||||
/** |
||||
* 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) |
||||
.body(BodyInserters.fromValue(SecurityConfigurationBuilder.builder().build())); |
||||
} |
||||
} |
@ -1,52 +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; |
||||
import springfox.documentation.swagger.web.UiConfigurationBuilder; |
||||
|
||||
/** |
||||
* SwaggerUiHandler |
||||
* |
||||
* @author lengleng |
||||
*/ |
||||
@Slf4j |
||||
@Component |
||||
public class SwaggerUiHandler implements HandlerFunction<ServerResponse> { |
||||
|
||||
/** |
||||
* 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) |
||||
.body(BodyInserters.fromValue(UiConfigurationBuilder.builder().build())); |
||||
} |
||||
} |
@ -1,38 +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.props; |
||||
|
||||
import lombok.Data; |
||||
import org.springframework.boot.context.properties.ConfigurationProperties; |
||||
import org.springframework.cloud.context.config.annotation.RefreshScope; |
||||
|
||||
import java.util.ArrayList; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 路由配置类 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
@Data |
||||
@RefreshScope |
||||
@ConfigurationProperties("blade.document") |
||||
public class RouteProperties { |
||||
|
||||
private final List<RouteResource> resources = new ArrayList<>(); |
||||
|
||||
} |
@ -1,59 +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.provider; |
||||
|
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.gateway.props.RouteProperties; |
||||
import org.springblade.gateway.props.RouteResource; |
||||
import org.springframework.context.annotation.Primary; |
||||
import org.springframework.stereotype.Component; |
||||
import springfox.documentation.swagger.web.SwaggerResource; |
||||
import springfox.documentation.swagger.web.SwaggerResourcesProvider; |
||||
|
||||
import java.util.ArrayList; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 聚合接口文档注册 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
@Primary |
||||
@Component |
||||
@AllArgsConstructor |
||||
public class SwaggerProvider implements SwaggerResourcesProvider { |
||||
private static final String API_URI = "/v2/api-docs"; |
||||
|
||||
private final RouteProperties routeProperties; |
||||
|
||||
@Override |
||||
public List<SwaggerResource> get() { |
||||
List<SwaggerResource> resources = new ArrayList<>(); |
||||
List<RouteResource> routeResources = routeProperties.getResources(); |
||||
routeResources.forEach(routeResource -> resources.add(swaggerResource(routeResource))); |
||||
return resources; |
||||
} |
||||
|
||||
private SwaggerResource swaggerResource(RouteResource routeResource) { |
||||
SwaggerResource swaggerResource = new SwaggerResource(); |
||||
swaggerResource.setName(routeResource.getName()); |
||||
swaggerResource.setLocation(routeResource.getLocation().concat(API_URI)); |
||||
swaggerResource.setSwaggerVersion(routeResource.getVersion()); |
||||
return swaggerResource; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,15 @@
|
||||
FROM adoptopenjdk/openjdk8-openj9:alpine-slim |
||||
|
||||
MAINTAINER smallchill@163.com |
||||
|
||||
RUN mkdir -p /blade/swagger |
||||
|
||||
WORKDIR /blade/swagger |
||||
|
||||
EXPOSE 18000 |
||||
|
||||
ADD ./target/blade-swagger.jar ./app.jar |
||||
|
||||
ENTRYPOINT ["java", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"] |
||||
|
||||
CMD ["--spring.profiles.active=test"] |
@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||||
<parent> |
||||
<artifactId>blade-ops</artifactId> |
||||
<groupId>org.springblade</groupId> |
||||
<version>2.7.1.RELEASE</version> |
||||
</parent> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
|
||||
<artifactId>blade-swagger</artifactId> |
||||
<name>${project.artifactId}</name> |
||||
<version>${bladex.project.version}</version> |
||||
<packaging>jar</packaging> |
||||
|
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>org.springblade</groupId> |
||||
<artifactId>blade-common</artifactId> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springblade</groupId> |
||||
<artifactId>blade-core-cloud</artifactId> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>com.github.xiaoymin</groupId> |
||||
<artifactId>knife4j-aggregation-spring-boot-starter</artifactId> |
||||
</dependency> |
||||
</dependencies> |
||||
|
||||
<build> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>com.spotify</groupId> |
||||
<artifactId>dockerfile-maven-plugin</artifactId> |
||||
<configuration> |
||||
<username>${docker.username}</username> |
||||
<password>${docker.password}</password> |
||||
<repository>${docker.registry.url}/${docker.namespace}/${project.artifactId}</repository> |
||||
<tag>${project.version}</tag> |
||||
<useMavenSettingsForAuth>true</useMavenSettingsForAuth> |
||||
<buildArgs> |
||||
<JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> |
||||
</buildArgs> |
||||
<skip>false</skip> |
||||
</configuration> |
||||
</plugin> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-antrun-plugin</artifactId> |
||||
</plugin> |
||||
</plugins> |
||||
</build> |
||||
|
||||
</project> |
@ -0,0 +1,12 @@
|
||||
knife4j: |
||||
cloud: |
||||
routes: |
||||
- name: 授权模块 |
||||
uri: 127.0.0.1 |
||||
location: /blade-auth/v2/api-docs |
||||
- name: 工作台模块 |
||||
uri: 127.0.0.1 |
||||
location: /blade-desk/v2/api-docs |
||||
- name: 系统模块 |
||||
uri: 127.0.0.1 |
||||
location: /blade-system/v2/api-docs |
@ -0,0 +1,12 @@
|
||||
knife4j: |
||||
cloud: |
||||
routes: |
||||
- name: 授权模块 |
||||
uri: 192.168.0.157 |
||||
location: /blade-auth/v2/api-docs |
||||
- name: 工作台模块 |
||||
uri: 192.168.0.157 |
||||
location: /blade-desk/v2/api-docs |
||||
- name: 系统模块 |
||||
uri: 192.168.0.157 |
||||
location: /blade-system/v2/api-docs |
@ -0,0 +1,12 @@
|
||||
knife4j: |
||||
cloud: |
||||
routes: |
||||
- name: 授权模块 |
||||
uri: 192.168.0.157 |
||||
location: /blade-auth/v2/api-docs |
||||
- name: 工作台模块 |
||||
uri: 192.168.0.157 |
||||
location: /blade-desk/v2/api-docs |
||||
- name: 系统模块 |
||||
uri: 192.168.0.157 |
||||
location: /blade-system/v2/api-docs |
@ -0,0 +1,6 @@
|
||||
server: |
||||
port: 18000 |
||||
knife4j: |
||||
enableAggregation: true |
||||
cloud: |
||||
enable: true |
@ -0,0 +1,8 @@
|
||||
${AnsiColor.BLUE} ______ _ _ ___ ___ |
||||
${AnsiColor.BLUE} | ___ \| | | | \ \ / / |
||||
${AnsiColor.BLUE} | |_/ /| | __ _ __| | ___ \ V / |
||||
${AnsiColor.BLUE} | ___ \| | / _` | / _` | / _ \ > < |
||||
${AnsiColor.BLUE} | |_/ /| || (_| || (_| || __/ / . \ |
||||
${AnsiColor.BLUE} \____/ |_| \__,_| \__,_| \___|/__/ \__\ |
||||
|
||||
${AnsiColor.BLUE}:: BladeX ${blade.service.version} :: ${spring.application.name}:${AnsiColor.RED}${blade.env}${AnsiColor.BLUE} :: Running SpringBoot ${spring-boot.version} :: ${AnsiColor.BRIGHT_BLACK} |
Loading…
Reference in new issue