在springboot项目进行maven install操作时,通用模块common报错repackage failed: Unable to find main class
原因:common模块中继承了父模块插件spring-boot-maven-plugin,打包时它会去寻找common模块的主启动类,然而common模块本身没有主启动类,所以报错
解决方法:目前项目的子模块较少,我直接把父模块pom中的spring-boot-maven-plugin注释掉,转移到common之外的其他子模块中,问题解决,以后若有更好的方法再议。
- Post link: http://example.com/2021/04/17/SpringBoot%E5%A4%9A%E6%A8%A1%E5%9D%97%E9%A1%B9%E7%9B%AE%E6%89%93%E5%8C%85%E6%97%B6%E6%8A%A5%E9%94%99%E6%89%BE%E4%B8%8D%E5%88%B0%E4%B8%BB%E7%B1%BB/
- Copyright Notice: All articles in this blog are licensed under unless otherwise stated.