如下圖的錯誤

解決步驟:
1.選中啟動失敗的項目,右鍵,打開terminal。如下圖:
2.輸入指令:
mvn clean package
3.等待清除成功,重新打包install,重新開機項目即可
4.如果打包install失敗,有可能是maven插件版本的問題,去pom.xml裡将
<build></build>
改為下面這樣:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<!--<configuration>-->
<!--<mainClass>com.furenqiang.system.SystemApplication</mainClass>-->
<!--<executable>true</executable>-->
<!--<includeSystemScope>true</includeSystemScope>-->
<!--</configuration>-->
</plugin>
<!--在這裡修改版本-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.3</version>
</plugin>
<!---->
</plugins>
</build>