极简部署方案

基于 spring boot 特性

1、首先修改配置,去掉项目名 jeecg-boot

  1. ant-design-jeecg-vue/src/utils/request.js
  2. ant-design-jeecg-vue/public/index.html

输入图片说明输入图片说明

2、修改路由History 模式为“hash”

  1. src/router/index.js

输入图片说明

然后 ant-design-jeecg-vue 运行 build

  1. npm run build

3、然后将编译之后dist下的文件复制到 jeecg-boot-module-system 项目的 /src/main/resources/static 目录下。4、修改springboot项目启动,根路径访问页面为 index.html jeecg-boot-module-system\src\main\java\org\jeecg\config\WebMvcConfiguration

  1. /**
  2. * 访问根路径默认跳转 index.html页面 (简化部署方案: 可以把前端打包直接放到项目的 webapp,上面的配置)
  3. */
  4. @Override
  5. public void addViewControllers(ViewControllerRegistry registry) {
  6. registry.addViewController("/").setViewName("index.html");
  7. }

5、修改springboot项目的启动名字,去掉项目名 jeecg-boot

  1. jeecg-boot-module-system/src/main/resources/application-dev.yml

输入图片说明

6、重新启动项目,访问 http://localhost:8080/ 就可以看到效果