JeecgBoot学习记录

登录模块

后端地址:
http://localhost:8080/jeecg-boot/
在线接口文档swagger:(登录名:jeecg,密码jeecg1314)
http://localhost:8080/jeecg-boot/swagger-ui.html
http://localhost:8080/jeecg-boot/doc.html
前端地址:(前端配置文件/vue.config.js)

devServer: {
    port: 3000,
    proxy: {
      '/jeecg-boot': {
        target: 'http://localhost:8080', // 请求本地 需要jeecg-boot后台项目
        ws: false,
        changeOrigin: true
      }
    }
  }

http://localhost:3000/

账户登录

swagger接口文档

你可能感兴趣的:(jeecg-boot,vue.js,spring,boot,html)