1、前端本地启动连不上后台,报错:
![](https://img.kancloud.cn/23/5e/235ea22326c34ad924befd289f6d177a_1152x368.png)
本地启动前端需要打开vue的代理配置,部署服务器注释代理配置,配置文件是:vue.config.js
![](https://img.kancloud.cn/92/a6/92a6a7d664274c568b18de1ea4bc38fa_1170x716.png)
2、服务的api文档地址是多少?
* ceres-app-server:http://127.0.0.1:8764/doc.html
* ceres-admin-server:http://127.0.0.1:8765/app/doc.html
3、数据库监控用户名和密码是多少?
本地启动地址默认为:http://127.0.0.1:8764/druid
用户名:ceres
密码:ceres
可自行修改application.yml配置文件
![](https://img.kancloud.cn/86/48/86487da3225113a26fc41868e2493578_900x228.png)
4、服务端打包跳过测试
![](https://img.kancloud.cn/03/02/0302bd5f8199d65b72568fa23d18548e_674x34.png)
方式一、mvn clean package -DskipTests
方式二、pom添加
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
5、前端工程报"compilation. templatesPlugin is not a function"
![](https://img.kancloud.cn/1c/9a/1c9a860ce59d3b5e9c6106f4a6526bc6_752x864.png)
解决方法:` npm add webpack@latest `
6、maven打包报“无效的密钥格式”
![](https://img.kancloud.cn/d1/b2/d1b22728c9d9559d662608fe7d86332e_888x315.png)
解决方案:
```
方式一、mvn clean package -DskipTests
方式二、pom添加
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
```