我在Springboot中使用Swagger。有些请求我将请求重定向到不同的URL(完全不同的域)。我想将Swagger UI本身重定向到重定向URL。反正有没有实现这个目标?提前致谢。
尝试以下方式。
@SpringBootApplication
public class MyApp {
public static void main(String[] args) {
SpringApplication.run(MyApp.class, args);
}
@Bean
RouterFunction<ServerResponse> routerFunction() {
return route(GET("/swagger"), req ->
ServerResponse.temporaryRedirect(URI.create("swagger-ui.html")).build());
}
}