package cn.web.demo.prepare.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.Ordered;
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
/**
* 使用重定向的方式使用户可以通过ip:port的方式直接访问swagger2
*/
@Override
public void addViewControllers(ViewControllerRegistry registry) {
//默认地址(可以是页面或后台请求接口)
registry.addViewController("/").setViewName("redirect:/swagger-ui.html");
//设置过滤优先级最高
registry.setOrder(Ordered.HIGHEST_PRECEDENCE);
}
}
SpringBoot集成swagger2:通过ip:port的方式访问swagger-ui.html
最新推荐文章于 2024-09-13 22:23:10 发布