SpringBoot项目迁移代码后启动报错
Unable to find a single main class from the following candidates [com.web.SpringbootApplication, com.web.common.context.RequestWrapper]
问题主要是RequestWrapper里面还有一个测试main方法,程序不知道该执行哪个main方法
解决办法
1.删除RequestWrapper的main方法
2.配置plugin的mainClass
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.1.3.RELEASE</version>
<configuration>
<mainClass>com.web.SpringbootApplication</mainClass>
</configuration>
</plugin>