docker运行docker ps会发现容器没有运行
通过docker ps -a 发现已经生成容器了,只是停止了
通过调用日志docker logs ${container_id}(注意此为容器id,勿跟镜像)
提示没有入口类信息
这是因为配置出现问题
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<!--加入下面两项配置-->
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>