一、给大家看看我的运行错误
直接原因,打包生成的jar包就有问题
二、解决方式
- pom中增加插件,我看很多网络上的教程,缺少executions 的配置,导致问题依旧没有解决,坑死我了。
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>