我正在尝试运行maven-exec插件,将jar文件称为类路径
<configuration>
<executable>java</executable>
<longClasspath>true</longClasspath>
<commandlineArgs>-classpath jarfile; Sample
</commandlineArgs>
</configuration>
但我的类路径设置不正确,因此抛出了classNotFoundException。如何配置?
答案 0 :(得分:1)
您的类路径不应以分号结尾。只需-classpath jarfile Sample
,假设“Sample”是您尝试运行的类的名称。我还要删除该命令行字符串末尾的换行符,以确保安全。