Unable to find a single main class from the following candidates

今天maven打包工程,突然报异常了,真的好奇怪

Unable to find a single main class from the following candidates [com.java2nb.novel.core.utils.DateUtil, com.java2nb.novel.core.utils.Generator, com.java2nb.novel.core.utils.StringUtil]

意思是:springboot无法找到一个主启动类

工程为:springboot的父子模块工程,common模块为基础支持模块,不需要启动类的。

那打包的时候为什么会到common模块找启动类呢。

挨个翻了下pom文件,原来在一次排查问题时,在父pom里加了个spring-boot-maven-plugin插件

<build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <excludes>
                        <exclude>
                            <groupId>org.projectlombok</groupId>
                            <artifactId>lombok</artifactId>
                        </exclude>
                    </excludes>
                </configuration>
            </plugin>
        </plugins>
    </build>

这就导致,打包的时候,会在各模块寻找启动类。

经验教训 

1,调试工程时,要考虑全面,仔细验证比较后再提交代码,不要解决一个问题而又引入另一个问题,给自己和他人带来麻烦

2,spring-boot-maven-plugin打包插件不要在父模块添加,哪个子模块需要,哪个再添加

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

fjza1168

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值