访问后台默认进去swagger接口首页

This commit is contained in:
zhangdaihao 2019-08-05 14:31:00 +08:00
parent c59636dd88
commit d9059fcc0c
2 changed files with 4 additions and 3 deletions

View File

@ -53,10 +53,11 @@ public class WebMvcConfiguration implements WebMvcConfigurer {
}
/**
* 访问根路径默认跳转 index.html页面 简化部署方案 可以把前端打包直接放到项目的 webapp上面的配置
* 方案一 默认访问根路径跳转 doc.html页面 swagger文档页面
* 方案二 访问根路径改成跳转 index.html页面 简化部署方案 可以把前端打包直接放到项目的 webapp上面的配置
*/
@Override
public void addViewControllers(ViewControllerRegistry registry) {
registry.addViewController("/").setViewName("index.html");
registry.addViewController("/").setViewName("doc.html");
}
}

View File

@ -4,6 +4,6 @@ spring:
swagger:
production: false
basic:
enable: true
enable: false
username: jeecg
password: jeecg1314