1、问题是因为pom出现问题,添加以下代码,重新打包。
<plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <configuration>
        <!-- 指定程序入口 -->
        <mainClass>com.hongxin.welcome.WelcomeApplication</mainClass>
        <layers>
            <enabled>true</enabled>
        </layers>
    </configuration>
    <!--执行重新打包,将springboot依赖都打进jar包中-->
    <executions>
        <execution>
            <goals>
                <goal>repackage</goal>
            </goals>
        </execution>
    </executions>
</plugin>