该问题出现在把打的jar包在cmd命令行执行时所出现的错,查找原因是META-INF/spring.factories中找不到自动配置类,排查问题是打包出现问题。
解决方式:pom文件添加相对于maven配置
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
<mainClass>com.power.CrbDockApplication</mainClass>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
然后maven install即可