2

Intellij 15.0.3
主类:xxx.project.Boot
VM 参数:-cp xxx.jar -Dxxx.work.dir=yyy xxx.project.Boot
程序参数:dump_args

项目代码

public static void main (String[] args) Throwable {
   // first line in the Main entry point of the program
   for (int i = 0; i < args.length; i++){
      System.out.println("args["+i+"] = "+args[i]);
   }
   ...
}

运行输出:

args[0] = -Didea.launcher.port=7536
args[1] = -Didea.launcher.bin.path=/home/dev/Software/idea-IU-143.1821.5/bin
args[2] = -Dfile.encoding=UTF-8
args[3] = com.intellij.rt.execution.application.AppMain
args[4] = xxx.project.Boot
args[5] = dump_args

调试输出:

args[0] = -Dfile.encoding=UTF-8
args[1] = xxx.project.Boot
args[2] = dump_args

我试图使缓存无效并重新启动 Intellj。这种情况下的行为不会改变。当我尝试使用相同的代码创建另一个入口点时,行为符合预期。如何调试此类配置问题?

4

0 回答 0