提交 29d77c89 编写于 作者: JEECG低代码平台's avatar JEECG低代码平台

访问后台默认进入swagger接口文档首页

上级 f494305e
...@@ -53,10 +53,11 @@ public class WebMvcConfiguration implements WebMvcConfigurer { ...@@ -53,10 +53,11 @@ public class WebMvcConfiguration implements WebMvcConfigurer {
} }
/** /**
* 访问根路径默认跳转 index.html页面 (简化部署方案: 可以把前端打包直接放到项目的 webapp,上面的配置) * 方案一: 默认访问根路径跳转 doc.html页面 (swagger文档页面)
* 方案二: 访问根路径改成跳转 index.html页面 (简化部署方案: 可以把前端打包直接放到项目的 webapp,上面的配置)
*/ */
@Override @Override
public void addViewControllers(ViewControllerRegistry registry) { public void addViewControllers(ViewControllerRegistry registry) {
registry.addViewController("/").setViewName("index.html"); registry.addViewController("/").setViewName("doc.html");
} }
} }
...@@ -4,6 +4,6 @@ spring: ...@@ -4,6 +4,6 @@ spring:
swagger: swagger:
production: false production: false
basic: basic:
enable: true enable: false
username: jeecg username: jeecg
password: jeecg1314 password: jeecg1314
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册