1、前端本地啟動連不上后臺,報錯:

本地啟動前端需要打開vue的代理配置,部署服務器注釋代理配置,配置文件是:vue.config.js

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配置文件

4、服務端打包跳過測試

方式一、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"

解決方法:` npm add webpack@latest `
6、maven打包報“無效的密鑰格式”

解決方案:
```
方式一、mvn clean package -DskipTests
方式二、pom添加
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
```