spring-boot-starter-webflux
(Spring Boot v2.0.0.M2) 已经配置spring-boot-starter-web
为在资源中的静态文件夹中提供静态内容。但它不会转发到 index.html。在 Spring MVC 中,可以这样配置:
@Override
public void addViewControllers(ViewControllerRegistry registry) {
registry.addViewController("/").setViewName("forward:/index.html");
}
如何在 Spring Webflux 中做到这一点?