springboot工程linux无法启动illegalargumentexception:name问题解决
springboot工程在idea中启动正常,但在linux系统中启动时抛出illegalargumentexception:name异常。该异常可能是由参数传入错误或mybatis-plus配置问题引起的。本文将探讨可能的原因并提供解决方案。
可能原因:
- 参数传入错误
- mybatis-plus配置问题
分析:
根据提供的报错信息和问题描述,mybatis-plus配置在idea中正常,排除了此原因。因此,更可能的原因为参数传入错误。
解决方案:
作者经过一番尝试和调查,发现问题出在打包上。通过查看manifest.mf文件,发现没有start-class属性,导致springboot无法找到入口。
解决办法:
在build中指定mainclass文件,即springbootapplication类所在位置:
-jar {main-class=cn.baway.springbootmybatisplus.SpringbootMybatisPlusApplication} bootiful-0.0.1-SNAPSHOT.jar
作者希望通过分享自己的经验教训,帮助其他遇到类似问题的开发者解决问题。